UNPKG

234 BTypeScriptView Raw
1import { PluginFunc, ConfigType, OpUnitType } from 'dayjs/esm'
2
3declare const plugin: PluginFunc
4export = plugin
5
6declare module 'dayjs/esm' {
7 interface Dayjs {
8 isSameOrAfter(date?: ConfigType, unit?: OpUnitType): boolean
9 }
10}