timestring/index.d.ts
2022-07-29 17:00:56 +03:00

23 lines
428 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;