mirror of
https://gitee.com/dgflash/oops-plugin-excel-to-json.git
synced 2026-06-20 11:32:26 +08:00
11 lines
224 B
TypeScript
11 lines
224 B
TypeScript
import { PluginFunc, ConfigType } from 'dayjs/esm'
|
|
|
|
declare const plugin: PluginFunc
|
|
export = plugin
|
|
|
|
declare module 'dayjs/esm' {
|
|
interface Dayjs {
|
|
calendar(referenceTime?: ConfigType, formats?: object): string
|
|
}
|
|
}
|