mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
389 B
TypeScript
15 lines
389 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;
|
|
|
|
export const VISIBILITY_SELECTOR_ITEMS = [
|
|
{ text: "PUBLIC", value: "PUBLIC" },
|
|
{ text: "PROTECTED", value: "PROTECTED" },
|
|
{ text: "PRIVATE", value: "PRIVATE" },
|
|
];
|