Skip to content

Commit b1abdc4

Browse files
authored
fix: fix missing types for ArraySupport plugin (#1401)
1 parent 656127c commit b1abdc4

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

types/index.d.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ declare function dayjs (date?: dayjs.ConfigType, format?: dayjs.OptionType, stri
99
declare function dayjs (date?: dayjs.ConfigType, format?: dayjs.OptionType, locale?: string, strict?: boolean): dayjs.Dayjs
1010

1111
declare namespace dayjs {
12-
export type ConfigType = string | number | Date | Dayjs
12+
interface ConfigTypeMap {
13+
default: string | number | Date | Dayjs
14+
}
15+
16+
export type ConfigType = ConfigTypeMap[keyof ConfigTypeMap]
1317

1418
export type OptionType = { locale?: string, format?: string, utc?: boolean } | string | string[]
1519

types/plugin/arraySupport.d.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
import { PluginFunc } from 'dayjs'
22

3+
declare module 'dayjs' {
4+
interface ConfigTypeMap {
5+
arraySupport: [number?, number?, number?, number?, number?, number?, number?]
6+
}
7+
}
8+
39
declare const plugin: PluginFunc
410
export = plugin

0 commit comments

Comments
 (0)