Browse Source

Pull request #2130: KERNEL-7828 补充声明

Merge in VISUAL/fineui from ~KOBI/fineui:master to master

* commit 'e7bbab48598430794c98e8578121583b169e9b89':
  KERNEL-7828 补充声明
es6
Kobi 3 years ago
parent
commit
b07cafa36e
  1. 11
      typescript/widget/numberinterval/numberinterval.ts

11
typescript/widget/numberinterval/numberinterval.ts

@ -7,6 +7,17 @@ export declare class NumberInterval extends Single {
static EVENT_VALID: string; static EVENT_VALID: string;
static EVENT_ERROR: string; static EVENT_ERROR: string;
props: {
watermark?: string;
allowBlank?: boolean;
min?: string | number;
max?: string | number;
closeMin?: boolean;
closeMax?: boolean;
validation?: 'invalid' | 'valid';
numTip?: string;
} & Single['props'];
isStateValid(): boolean; isStateValid(): boolean;
setMinEnable(v: boolean): void; setMinEnable(v: boolean): void;

Loading…
Cancel
Save