sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
18 lines (17 loc) • 733 B
TypeScript
import { type PickerSlots, type PickerProps } from '../picker/common';
import { type DefaultProps } from '../config';
import { type TransitionHookEmits } from '../popup/common';
import { type FormPopoutProps } from '../../use/useFormPopout';
export interface PickerPopoutProps extends FormPopoutProps, PickerProps {
}
export declare const defaultPickerPopoutProps: () => DefaultProps<PickerPopoutProps>;
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 {
}