NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/dayjs/plugin/isSameOrAfter.d.ts

11 lines
225 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { PluginFunc, ConfigType, OpUnitType } from 'dayjs'
declare const plugin: PluginFunc
export = plugin
declare module 'dayjs' {
interface Dayjs {
isSameOrAfter(date: ConfigType, unit?: OpUnitType): boolean
}
}