UNPKG

249 BTypeScriptView Raw
1import { PluginFunc, ConfigType, OpUnitType } from 'dayjs'
2
3declare const plugin: PluginFunc
4export = plugin
5
6declare module 'dayjs' {
7 interface Dayjs {
8 isBetween(a: ConfigType, b: ConfigType, c?: OpUnitType | null, d?: string): boolean
9 }
10}