de70b613ece348257803de18e4fe66b3a5975f0ce94bc7b4a0eb6eb43127a46b2ea2f78e10377ce57f4a036bef8112ba1b42491f9b859bf707e4166a37fe61 227 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. isSameOrBefore(date?: ConfigType, unit?: OpUnitType): boolean
  7. }
  8. }