y-design-ssr
Version:
SSR component library of YUI with Vue3
70 lines (69 loc) • 1.75 kB
TypeScript
declare const CheckboxGroup: import("../utils/withInstall").WithInstall<import("vue").DefineComponent<{
modelValue: {
type: () => string[];
default: () => string[];
};
max: {
type: NumberConstructor;
default: null;
};
min: {
type: NumberConstructor;
default: null;
};
disabled: {
type: BooleanConstructor;
default: null;
};
square: {
type: BooleanConstructor;
default: null;
};
checkedColor: {
type: StringConstructor;
default: null;
};
horizontal: {
type: BooleanConstructor;
default: boolean;
};
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
modelValue: {
type: () => string[];
default: () => string[];
};
max: {
type: NumberConstructor;
default: null;
};
min: {
type: NumberConstructor;
default: null;
};
disabled: {
type: BooleanConstructor;
default: null;
};
square: {
type: BooleanConstructor;
default: null;
};
checkedColor: {
type: StringConstructor;
default: null;
};
horizontal: {
type: BooleanConstructor;
default: boolean;
};
}>>, {
disabled: boolean;
modelValue: string[];
max: number;
min: number;
square: boolean;
checkedColor: string;
horizontal: boolean;
}>>;
export default CheckboxGroup;
export * from './src/constants';