Browse Source

KERNEL-6431 修改类型错误

es6
alan 4 years ago
parent
commit
25099bcf38
  1. 4
      typescript/widget/multiselect/multiselect.combo.ts
  2. 4
      typescript/widget/multiselect/multiselect.insert.combo.ts

4
typescript/widget/multiselect/multiselect.combo.ts

@ -45,13 +45,13 @@ export declare class MultiSelectCombo extends Single {
type: string; type: string;
value: string[]; value: string[];
assist: string[]; assist: string[];
}[]): void; }): void;
getValue(): { getValue(): {
type: string; type: string;
value: string[]; value: string[];
assist: string[]; assist: string[];
}[]; };
populate(...args: any[]): void; populate(...args: any[]): void;
} }

4
typescript/widget/multiselect/multiselect.insert.combo.ts

@ -48,13 +48,13 @@ export declare class MultiSelectInsertCombo extends Single {
type: string; type: string;
value: string[]; value: string[];
assist: string[]; assist: string[];
}[]): void; }): void;
getValue(): { getValue(): {
type: string; type: string;
value: string[]; value: string[];
assist: string[]; assist: string[];
}[]; };
populate(...args: any[]): void; populate(...args: any[]): void;
} }

Loading…
Cancel
Save