hrms-manual/node_modules/dayjs/plugin/weekOfYear.d.ts

13 lines
189 B
TypeScript
Raw Normal View History

2023-09-06 14:51:44 +07:00
import { PluginFunc } from 'dayjs'
declare const plugin: PluginFunc
export = plugin
declare module 'dayjs' {
interface Dayjs {
week(): number
week(value : number): Dayjs
}
}