hrms-manual/node_modules/dayjs/esm/plugin/weekYear/index.d.ts
2023-09-06 14:51:44 +07:00

10 lines
168 B
TypeScript

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