/** * storage工具类 */ export declare class StorageUtil { /** * 存储数据到storage * @param key 存储的键 * @param value 存储的值 */ static setStorageSync(key: string, value: unknown): void; /** * 从storage中读取数据 * @param key 存储的键 */ static getStorageSync(key: string): any; }