sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
24 lines (23 loc) • 706 B
TypeScript
import { type StyleValue } from 'vue';
import { type RadioGroupProps } from '../radio/common';
export interface RadioPopoutProps extends RadioGroupProps {
visible?: boolean;
title?: string;
popoutClass?: string;
popoutStyle?: StyleValue;
}
export declare const defaultRadioPopoutProps: () => {
options: () => never[];
validateEvent: boolean;
type: RadioPopoutProps["type"];
};
export interface RadioPopoutSlots {
default?(props: Record<string, never>): any;
}
export interface RadioPopoutEmits {
(e: 'update:visible', visible: boolean): void;
(e: 'update:model-value', value: any): void;
(e: 'change', value: any): void;
}
export interface RadioPopoutExpose {
}