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

11 lines
163 B
TypeScript

import { PluginFunc } from 'dayjs'
declare const plugin: PluginFunc
export = plugin
declare module 'dayjs' {
interface Dayjs {
isTomorrow(): boolean
}
}