timestring/timestring.d.ts
2022-07-29 16:42:27 +03:00

23 lines
421 B
TypeScript

/** 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;