mirror of
https://gitee.com/dgflash/oops-plugin-excel-to-json.git
synced 2026-05-22 18:19:19 +08:00
12 lines
307 B
TypeScript
12 lines
307 B
TypeScript
import { PluginFunc } from 'dayjs/esm'
|
|
|
|
declare const plugin: PluginFunc
|
|
export = plugin
|
|
|
|
declare module 'dayjs/esm' {
|
|
export function max(dayjs: Dayjs[]): Dayjs
|
|
export function max(...dayjs: Dayjs[]): Dayjs
|
|
export function min(dayjs: Dayjs[]): Dayjs
|
|
export function min(...dayjs: Dayjs[]): Dayjs
|
|
}
|