gree_leran/node_modules/dayjs/plugin/toObject.d.ts

21 lines
315 B
TypeScript
Raw Permalink Normal View History

2024-06-14 01:11:29 +00:00
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
}
}