ckgl/node_modules/vant/lib/radio-group/index.d.ts
2024-12-21 13:52:42 +08:00

29 lines
1.5 KiB
TypeScript

export declare const RadioGroup: import("../utils").WithInstall<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
shape: import("vue").PropType<import("..").RadioShape>;
disabled: BooleanConstructor;
iconSize: (NumberConstructor | StringConstructor)[];
direction: import("vue").PropType<import("./RadioGroup").RadioGroupDirection>;
modelValue: import("vue").PropType<unknown>;
checkedColor: StringConstructor;
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
shape: import("vue").PropType<import("..").RadioShape>;
disabled: BooleanConstructor;
iconSize: (NumberConstructor | StringConstructor)[];
direction: import("vue").PropType<import("./RadioGroup").RadioGroupDirection>;
modelValue: import("vue").PropType<unknown>;
checkedColor: StringConstructor;
}>> & Readonly<{
onChange?: ((...args: any[]) => any) | undefined;
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
}>, {
disabled: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>>;
export default RadioGroup;
export { radioGroupProps } from './RadioGroup';
export type { RadioGroupProps, RadioGroupDirection } from './RadioGroup';
declare module 'vue' {
interface GlobalComponents {
VanRadioGroup: typeof RadioGroup;
}
}