various-ui
Version:
This is a test version of the Vue 3 component library
27 lines (26 loc) • 824 B
TypeScript
import { ExtractPropTypes, InjectionKey } from "vue";
export declare const UiCheckboxGroupPropsOption: {
readonly modelValue: {
readonly type: ArrayConstructor;
readonly required: true;
};
readonly name: {
readonly type: StringConstructor;
};
readonly max: {
readonly type: NumberConstructor;
};
readonly min: {
readonly type: NumberConstructor;
};
};
export declare const UiCheckboxGroupEmits: {
change: () => boolean;
};
export type UiCheckboxGroupProps = ExtractPropTypes<typeof UiCheckboxGroupPropsOption>;
export type UiCheckboxGroupInjectionKeyType = InjectionKey<{
define: UiCheckboxGroupProps;
values: any[];
change: (...args: any) => void;
}>;
export declare const UiCheckboxGroupInjectionKey: UiCheckboxGroupInjectionKeyType;