checkbox.d.ts 471 B

12345678
  1. import type { InjectionKey, ToRefs, WritableComputedRef } from 'vue';
  2. import type { CheckboxGroupProps } from 'element-plus/es/components';
  3. declare type CheckboxGroupContext = {
  4. modelValue?: WritableComputedRef<any>;
  5. changeEvent?: (...args: any) => any;
  6. } & ToRefs<Pick<CheckboxGroupProps, 'size' | 'min' | 'max' | 'disabled' | 'validateEvent' | 'fill' | 'textColor'>>;
  7. export declare const checkboxGroupContextKey: InjectionKey<CheckboxGroupContext>;
  8. export {};