gtht-miniapp-sdk
Version:
gtht-miniapp-sdk 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
18 lines (17 loc) • 733 B
TypeScript
import { type RadioGroupOption } from '../radio/common';
import { type PopoutInputSlots, type PopoutInputProps } from '../popout-input/common';
import { type RadioPopoutEmits, type RadioPopoutProps } from '../radio-popout/common';
export type RadioInputOption = RadioGroupOption;
export interface RadioInputProps extends RadioPopoutProps, Omit<PopoutInputProps, 'modelValue'> {
valueOnClear?: () => any;
}
export declare const defaultRadioInputProps: () => {
valueOnClear: RadioInputProps["valueOnClear"];
options: () => never[];
validateEvent: boolean;
type: RadioPopoutProps["type"];
};
export interface RadioInputSlots extends PopoutInputSlots {
}
export interface RadioInputEmits extends RadioPopoutEmits {
}