Files
SQLBot/frontend/src/utils/useCache.ts

14 lines
277 B
TypeScript
Raw Normal View History

2025-09-08 16:37:42 +08:00
import WebStorageCache from 'web-storage-cache'
type CacheType = 'sessionStorage' | 'localStorage'
export const useCache = (type: CacheType = 'localStorage') => {
const wsCache: WebStorageCache = new WebStorageCache({
storage: type,
})
return {
wsCache,
}
}