9 lines
196 B
TypeScript
Raw Permalink Normal View History

2025-04-01 09:03:51 +08:00
import { PluginFunc } from 'dayjs/esm'
declare interface PluginOptions {
parseTwoDigitYear?: (yearString: string) => number
}
declare const plugin: PluginFunc<PluginOptions>
export = plugin