feat: 添加工具方法

This commit is contained in:
landaiqing
2024-04-15 02:19:27 +08:00
parent 73a74ccc7c
commit 9dfcc7d7db
7 changed files with 247 additions and 42 deletions

View File

@@ -0,0 +1,8 @@
interface globalConfig {
type: 'localStorage' | 'sessionStorage';
prefix: string;
expire: number;
isEncrypt: boolean;
}
export type { globalConfig };