| 1 | export interface LoadParams { |
| 2 | key: string; |
| 3 | id?: string; |
| 4 | autoSync?: boolean; |
| 5 | syncInBackground?: boolean; |
| 6 | syncParams?: any; |
| 7 | } |
| 8 | |
| 9 | export default class Storage { |
| 10 | sync: any; |
nothing calls this directly
no outgoing calls
no test coverage detected