| 1 | export interface IStorage { |
| 2 | store(category: string, uuid: string, object: any): Promise<void>; |
| 3 | load(category: string, classz: any, uuid: string): Promise<any>; |
| 4 | list(category: string): Promise<Array<string>>; |
| 5 | delete(category: string, uuid: string): Promise<void>; |
| 6 | } |
no outgoing calls
no test coverage detected