| 12 | * Base implementation for handling items with ids. |
| 13 | */ |
| 14 | export abstract class BaseStore<T extends HasID> implements IClearable { |
| 15 | @observable protected accessor items: T[] = []; |
| 16 | |
| 17 | protected abstract requestItems(): Promise<T[]>; |
nothing calls this directly
no outgoing calls
no test coverage detected