index.d.ts 202 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. weekday(): number
  7. weekday(value: number): Dayjs
  8. }
  9. }