1
0
mirror of synced 2026-03-24 05:28:34 +08:00
Files
cook/utils/settings.ts
2023-08-20 02:28:00 +08:00

11 lines
168 B
TypeScript

export interface UserSettings {
/**
* 保留本地数据
*/
keepLocalData: boolean
}
export const defaultSettings: UserSettings = {
keepLocalData: true,
}