| 26 | } |
| 27 | |
| 28 | export interface IStorableModule { |
| 29 | storageKey: string[] | string; |
| 30 | store(result: any): any; |
| 31 | load(keys: ProjectData): void; |
| 32 | clear(): void; |
| 33 | } |
| 34 | |
| 35 | export interface ILoadableModule { |
| 36 | onLoad(): void; |
no outgoing calls
no test coverage detected