9 lines
155 B
TypeScript
9 lines
155 B
TypeScript
interface globalConfig {
|
|
type: 'localStorage' | 'sessionStorage';
|
|
prefix: string;
|
|
expire: number;
|
|
isEncrypt: boolean;
|
|
}
|
|
|
|
export type { globalConfig };
|