Files
WechatExplorer/src/shared/cache.ts
T
2026-07-30 09:49:56 +08:00

16 lines
315 B
TypeScript

export type CacheClearScope = 'bootstrap' | 'electron' | 'all'
export interface CacheSummaryItem {
id: 'bootstrap' | 'electron'
label: string
description: string
sizeBytes: number
fileCount: number
}
export interface CacheSummary {
items: CacheSummaryItem[]
totalBytes: number
updatedAt: number
}