Browse Source

无JIRA任务 fix: 改下类型

es6
youki 3 years ago
parent
commit
ef52ea1bf5
  1. 12
      typescript/case/toolbar/toolbar.multiselect.ts

12
typescript/case/toolbar/toolbar.multiselect.ts

@ -5,20 +5,10 @@ export declare class MultiSelectBar extends BasicButton {
static EVENT_CHANGE: string;
props: {
text: string;
isAllCheckedBySelectedValue: Function;
disableSelected: boolean;
isHalfCheckedBySelectedValue: Function;
halfSelected: boolean;
iconWrapperWidth: number;
iconWidth: number;
iconHeight: number;
} & BasicButton['props'];
props: {
text: string;
isAllCheckedBySelectedValue: (values: any[]) => boolean;
disableSelected: boolean;
isHalfCheckedBySelectedValue: (values: any[]) => boolean;
halfSelected: boolean;
iconWrapperWidth: number;

Loading…
Cancel
Save