Files
tp-we-vue/node_modules/dayjs/plugin/weekYear.d.ts
2024-11-28 23:08:17 +01:00

11 lines
160 B
TypeScript

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