index.d.ts 265 B

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