12 lines
394 B
TypeScript
12 lines
394 B
TypeScript
/** The number of milliseconds per second */
|
|
export const MILLISECONDS_PER_SECOND = 1_000;
|
|
|
|
/** The number of ticks per millisecond */
|
|
export const TICKS_PER_MILLISECOND = 10_000;
|
|
|
|
/** The number of ticks per second */
|
|
export const TICKS_PER_SECOND = MILLISECONDS_PER_SECOND * TICKS_PER_MILLISECOND;
|
|
|
|
/** The number of ticks per minute */
|
|
export const TICKS_PER_MINUTE = 60 * TICKS_PER_SECOND;
|