mirror of
https://gitee.com/dgflash/oops-plugin-excel-to-json.git
synced 2026-05-14 19:25:57 +08:00
9 lines
196 B
TypeScript
9 lines
196 B
TypeScript
import { PluginFunc } from 'dayjs/esm'
|
|
|
|
declare interface PluginOptions {
|
|
parseTwoDigitYear?: (yearString: string) => number
|
|
}
|
|
|
|
declare const plugin: PluginFunc<PluginOptions>
|
|
export = plugin
|