timestring/index.d.ts

23 lines
421 B
TypeScript
Raw Normal View History

2022-07-29 15:42:27 +02:00
/** Declaration file generated by dts-gen */
export = timestring;
type ReturnUnit =
'ms' |
's' |
'm' |
'h' |
'd' |
'w' |
'th' |
'y'
type TimestringOptions = {
hoursPerDay: number
daysPerWeek: number
weeksPerMonth: number
monthsPerYear: number
daysPerYear: number
}
declare function timestring(string: string, returnUnit: ReturnUnit, opts: TimestringOptions): any;