6 lines
328 B

export declare function setToken(value: string, key?: string): void;
export declare function getToken(): string;
export declare function getStorage(key: string): any;
export declare function getAllStorage(): any;
export declare function setStorage(storage: any): void;
export declare function clearStorage(path?: string): void;