Files
wehub-resource-sync 2114b14ee0
Sync main into demo / sync (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:35:26 +08:00

16 lines
362 B
TypeScript

import type { NotesFolder } from './types';
export const NOTES_CONSTANTS = {
storageKey: 'notes',
autoSaveDelayMs: 800,
defaultFolderId: 'all',
folders: [
{ id: 'all', name: '全部', system: true },
{ id: 'call', name: '通话笔记', system: true },
{ id: 'unfiled', name: '未分类', system: true },
] as NotesFolder[],
} as const;