mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-11 15:16:28 +08:00
5 lines
142 B
TypeScript
5 lines
142 B
TypeScript
export const OneKB = 1024;
|
|
export const OneMB = OneKB * OneKB;
|
|
export const OneGB = OneKB * OneMB;
|
|
export const OneDay = 1000 * 60 * 60 * 24;
|