b61cc3717047e5f435704ad278a1f6a5c48eae73f50f8014b7984cdd3713f7898c77f36a692e7e84d93b913017dac3431221fab72bfbe1686ff23cbb657e69 592 B

12345678910111213141516171819202122
  1. import { ElementUIComponent, ElementUIComponentSize } from './component'
  2. /** Checkbox Group Component */
  3. export declare class ElCheckboxGroup extends ElementUIComponent {
  4. /** Size of checkbox buttons or bordered checkboxes */
  5. size: ElementUIComponentSize
  6. /** Whether the nesting checkboxes are disabled */
  7. disabled: boolean
  8. /** Minimum number of checkbox checked */
  9. min: number
  10. /** Maximum number of checkbox checked */
  11. max: number
  12. /** Font color when button is active */
  13. textColor: string
  14. /** Border and background color when button is active */
  15. fill: string
  16. }