Browse Source

KERNEL-7828 根据comment优化

es6
Kobi 3 years ago
parent
commit
ab689b393b
  1. 2
      package.json
  2. 2
      typescript/base/single/button/buttons/button.ts

2
package.json

@ -77,4 +77,4 @@
}, },
"author": "fanruan", "author": "fanruan",
"license": "MIT" "license": "MIT"
} }

2
typescript/base/single/button/buttons/button.ts

@ -14,8 +14,6 @@ export declare class Button extends BasicButton {
block?: boolean; // 是否块状显示,即不显示边框,没有最小宽度的限制 block?: boolean; // 是否块状显示,即不显示边框,没有最小宽度的限制
clear?: boolean; // 是否去掉边框和背景 clear?: boolean; // 是否去掉边框和背景
ghost?: boolean; // 是否幽灵显示, 即正常状态无背景 ghost?: boolean; // 是否幽灵显示, 即正常状态无背景
highLight: boolean,
handler: Function | null,
} & AbstractLabel['props'] & IconLabel['props'] & BasicButton['props']; } & AbstractLabel['props'] & IconLabel['props'] & BasicButton['props'];
text: Label; text: Label;

Loading…
Cancel
Save