Browse Source

Merge pull request #1039 in VISUAL/fineui from ~TELLER/fineui:master to master

* commit 'da8d2d8edf4dac27bcb2a941cd66651b467de81e':
  fix: 参数类型错误
es6
Teller 5 years ago
parent
commit
adc27c66ca
  1. 2
      typescript/core/base.ts

2
typescript/core/base.ts

@ -361,7 +361,7 @@ export interface _base {
isLeapYear: (year: number) => boolean;
checkDateVoid: (YY: string, MM: string, DD: string, minDate: string, maxDate: string) => (number|string)[];
checkDateVoid: (YY: string | number, MM: string | number, DD: string | number, minDate: string, maxDate: string) => (number|string)[];
checkDateLegal: (str: string) => boolean;

Loading…
Cancel
Save