587aacddccf375dc04f9f7bc2abb5aae2ffb5df8a9e6493f450f01f2ad6fc81c93e1b8967db549c3452bee8b81a766af95654f1bb349aadd86715812178598 234 B

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