typescript 缓存的 index.d.ts 写法
/**
* store.legacy 缓存
* see: /fe-lib/storejs/store.legacy.min.js
*/
class store {
// 获取缓存
static get(key: T): StoreKvMapping[T]
// 设置缓存
static set(key: T, value: StoreKvMapping[T])
}
/**
* store.legacy 缓存
* see: /fe-lib/storejs/store.legacy.min.js
*/
class store {
// 获取缓存
static get(key: T): StoreKvMapping[T]
// 设置缓存
static set(key: T, value: StoreKvMapping[T])
}