aimpress-chatbot/node_modules/dayjs/plugin/toObject.d.ts
“SamoilenkoVadym” 195299ece0 Initial commit
2025-04-27 17:05:18 +01:00

20 lines
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
}
}