zoujiandong 2bd2fd31ac 1.22
2024-01-22 08:55:30 +08:00

11 lines
169 B
TypeScript

import { PluginFunc } from 'dayjs/esm'
declare const plugin: PluginFunc
export = plugin
declare module 'dayjs/esm' {
interface Dayjs {
toArray(): number[]
}
}