UNPKG

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