constants.d.ts 490 B

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