recipe-backend/node_modules/dayjs/plugin/weekYear.d.ts
2025-09-21 12:39:54 +02:00

10 lines
160 B
TypeScript

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