| 1 | export interface IStorageService { |
| 2 | tryGetLocalStorage(key: string): any; |
| 3 | trySetLocalStorage(key: string, value: any): void; |
| 4 | } |
| 5 | |
| 6 | export interface IContextService { |
| 7 | getDataFromNameSpace(nameSpace: string): any; |
no outgoing calls
no test coverage detected