sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
24 lines (23 loc) • 716 B
TypeScript
import { type StyleValue } from 'vue';
import { type PickerSlots, type PickerProps } from '../picker/common';
export interface PickerPopoutProps extends PickerProps {
visible?: boolean;
title?: string;
validateEvent?: boolean;
popoutClass?: string;
popoutStyle?: StyleValue;
}
export declare const defaultPickerPopoutProps: () => {
validateEvent: boolean;
columns: () => never[];
immediateChange: boolean;
};
export interface PickerPopoutSlots extends PickerSlots {
}
export interface PickerPopoutEmits {
(e: 'update:visible', visible: boolean): void;
(e: 'update:model-value', value: any): void;
(e: 'change', value: any): void;
}
export interface PickerPopoutExpose {
}