objectSupport.d.ts 257 B

123456789101112
  1. import { PluginFunc } from 'dayjs'
  2. declare const plugin: PluginFunc
  3. export = plugin
  4. declare module 'dayjs' {
  5. interface Dayjs {
  6. set(argument: object): Dayjs
  7. add(argument: object): Dayjs
  8. subtract(argument: object): Dayjs
  9. }
  10. }