UNPKG

sard-uniapp

Version:

sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库

16 lines (15 loc) 648 B
import { type RadioGroupOption } from '../radio/common'; import { 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 RadioInputEmits extends RadioPopoutEmits { }