Skip to content

Commit

Permalink
chore: update isBetween.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
iamkun committed Feb 23, 2019
1 parent 8480919 commit 44e9680
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/plugin/isBetween.d.ts
Original file line number Diff line number Diff line change
@@ -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
}
}

0 comments on commit 44e9680

Please sign in to comment.