mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-02 18:09:58 +08:00
10 lines
319 B
TypeScript
10 lines
319 B
TypeScript
export const OneKB = 1024;
|
|
export const OneMB = OneKB * OneKB;
|
|
export const OneGB = OneKB * OneMB;
|
|
export const OneMinute = 1000 * 60;
|
|
export const OneHour = OneMinute * 60;
|
|
export const OneDay = OneHour * 24;
|
|
export const OneWeek = OneDay * 7;
|
|
export const OneMonth = OneDay * 30;
|
|
export const OneYear = OneDay * 365;
|