UNPKG

311 BTypeScriptView Raw
1export interface IWebstorageConfig {
2 prefix?: string;
3 separator?: string;
4 caseSensitive?: boolean;
5}
6export declare class WebstorageConfig implements IWebstorageConfig {
7 prefix: string;
8 separator: string;
9 caseSensitive: boolean;
10 constructor(config?: IWebstorageConfig);
11}