shelving
Version:
Toolkit for using data in JavaScript.
37 lines (36 loc) • 1.3 kB
TypeScript
/** One thousand. */
export declare const THOUSAND = 1000;
/** Ten thousand. */
export declare const TEN_THOUSAND: number;
/** Hundred thousand. */
export declare const HUNDRED_THOUSAND: number;
/** One million. */
export declare const MILLION: number;
/** One billion. */
export declare const BILLION: number;
/** One trillion. */
export declare const TRILLION: number;
/** One second in millseconds. */
export declare const SECOND = 1000;
/** One minute in millseconds. */
export declare const MINUTE: number;
/** One hour in millseconds. */
export declare const HOUR: number;
/** One day in millseconds. */
export declare const DAY: number;
/** One week in millseconds. */
export declare const WEEK: number;
/** One month in millseconds. */
export declare const MONTH: number;
/** One year in millseconds. */
export declare const YEAR: number;
/** Non-breaking space. */
export declare const NBSP = "\u00A0";
/** Thin space. */
export declare const THINSP = "\u2009";
/** Non-breaking narrow space (goes between numbers and their corresponding units). */
export declare const NNBSP = "\u202F";
/** The `STOP` symbol indicates something should stop. */
export declare const STOP: unique symbol;
/** The `NONE` symbol indicates something is nothing. */
export declare const NONE: unique symbol;