Files
memos/web/src/helpers/consts.ts
2024-01-27 11:14:17 +08:00

17 lines
409 B
TypeScript

// UNKNOWN_ID is the symbol for unknown id
export const UNKNOWN_ID = -1;
// default animation duration
export const ANIMATION_DURATION = 200;
// millisecond in a day
export const DAILY_TIMESTAMP = 3600 * 24 * 1000;
// space width for tab action in editor
export const TAB_SPACE_WIDTH = 2;
// default fetch memo amount
export const DEFAULT_MEMO_LIMIT = 10;
export const DEFAULT_LIST_MEMOS_PAGE_SIZE = 10;