@bracketed/logger
Version:
An alternative to your run-of-the-mill node console logging functions!
18 lines (16 loc) • 402 B
text/typescript
declare enum Time {
Nanosecond = 0.000001,
Microsecond = 0.001,
Millisecond = 1,
Second = 1000,
Minute = 60000,
Hour = 3600000,
Day = 86400000,
Week = 604800000,
Month = 2628000000,
Year = 31536000000
}
declare const days: string[];
declare const months: string[];
declare const tokens: Map<string, number>;
export { Time, days, months, tokens };