UNPKG

sard-uniapp

Version:

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

23 lines (22 loc) 694 B
import { type StyleValue } from 'vue'; import { type CheckboxGroupProps } from '../checkbox/common'; export interface CheckboxPopoutProps extends CheckboxGroupProps { visible?: boolean; title?: string; popoutClass?: string; popoutStyle?: StyleValue; } export declare const defaultCheckboxPopoutProps: () => { options: () => never[]; validateEvent: boolean; }; export interface CheckboxPopoutSlots { default?(props: Record<string, never>): any; } export interface CheckboxPopoutEmits { (e: 'update:visible', visible: boolean): void; (e: 'update:model-value', value: any): void; (e: 'change', value: any): void; } export interface CheckboxPopoutExpose { }