import { ClearType, WebStorageConfigInterface } from '../config/config.interface'; export interface WebStorageServiceInterface { keys: Array; new (): { keys: Array; config: WebStorageConfigInterface; get(key: string): any; set(key: string, value: any): void; remove(key: string): void; clear(clearType?: ClearType, secondParam?: any): void; }; }