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

10 lines
216 B
TypeScript

import { PluginFunc, ConfigType } from 'dayjs'
declare const plugin: PluginFunc
export = plugin
declare module 'dayjs' {
interface Dayjs {
calendar(referenceTime?: ConfigType, formats?: object): string
}
}