UNPKG

shelving

Version:

Toolkit for using data in JavaScript.

46 lines (45 loc) 1.7 kB
/** 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 `ABORT` symbol indicates something was manually aborted. */ export declare const ABORT: unique symbol; /** The `NONE` symbol indicates something is nothing. */ export declare const NONE: unique symbol; /** The `SKIP` symbol indicates something should be silently skipped. */ export declare const SKIP: unique symbol; export declare const WAITING = "\u22EF"; export declare const SUCCESS = "\u2713"; export declare const FAILURE = "\u2717"; export declare const UP = "\u2191"; export declare const DOWN = "\u2193"; export declare const RIGHT = "\u2192"; export declare const LEFT = "\u2190";