diff --git a/types/plugin/isBetween.d.ts b/types/plugin/isBetween.d.ts index 9500c4954..e73a27ec3 100644 --- a/types/plugin/isBetween.d.ts +++ b/types/plugin/isBetween.d.ts @@ -1,10 +1,10 @@ -import { PluginFunc, ConfigType } from 'dayjs' +import { PluginFunc, ConfigType, OpUnitType } from 'dayjs' declare const plugin: PluginFunc export = plugin declare module 'dayjs' { interface Dayjs { - isBetween(a: ConfigType, b: ConfigType): boolean + isBetween(a: ConfigType, b: ConfigType, c?: OpUnitType | null, d?: string): boolean } }