UNPKG

sard-uniapp

Version:

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

27 lines (26 loc) 856 B
import { type StyleValue } from 'vue'; import { type PickerSlots, type PickerProps } from '../picker/common'; import { type TransitionHookEmits } from '../popup/common'; export interface PickerPopoutProps extends PickerProps { visible?: boolean; title?: string; validateEvent?: boolean; popoutClass?: string; popoutStyle?: StyleValue; resettable?: boolean; } export declare const defaultPickerPopoutProps: () => { validateEvent: boolean; columns: () => never[]; immediateChange: boolean; }; export interface PickerPopoutSlots extends PickerSlots { } export interface PickerPopoutEmits extends TransitionHookEmits { (e: 'update:visible', visible: boolean): void; (e: 'update:model-value', value: any): void; (e: 'change', value: any): void; (e: 'confirm'): void; } export interface PickerPopoutExpose { }