UNPKG

dayjs

Version:

2KB immutable date time library alternative to Moment.js with the same modern API

21 lines (17 loc) 323 B
import { PluginFunc } from 'dayjs/esm' 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/esm' { interface Dayjs { toObject(): DayjsObject } }