c0d86fd4acc7eb83ab16eb8020f56a2d99a1d19d9815f204c5ab85ffa96b8fa7eba01c726e72ad8e70bfafd955092b365b8fd2b75886960d43c2ea3e42ff80 226 B

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