dayjs
Version:
2KB immutable date time library alternative to Moment.js with the same modern API
21 lines (17 loc) • 315 B
TypeScript
import { PluginFunc } from 'dayjs'
declare const plugin: PluginFunc
export = plugin
interface DayjsObject {
years: number
months: number
date: number
hours: number
minutes: number
seconds: number
milliseconds: number
}
declare module 'dayjs' {
interface Dayjs {
toObject(): DayjsObject
}
}