mirror of
https://wget.la/https://github.com/Wxw-Gu/WechatExplorer
synced 2026-08-17 19:47:08 +08:00
16 lines
315 B
TypeScript
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
|
|
}
|