UNPKG

gtht-miniapp-sdk

Version:

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

16 lines (15 loc) 674 B
import { type PopoutInputSlots, type PopoutInputProps } from '../popout-input/common'; import { type PickerPopoutSlots, type PickerPopoutEmits, type PickerPopoutProps } from '../picker-popout/common'; export interface PickerInputProps extends PickerPopoutProps, Omit<PopoutInputProps, 'modelValue'> { valueOnClear?: () => any; } export declare const defaultPickerInputProps: () => { valueOnClear: PickerInputProps["valueOnClear"]; validateEvent: boolean; columns: () => never[]; immediateChange: boolean; }; export interface PickerInputSlots extends PickerPopoutSlots, PopoutInputSlots { } export interface PickerInputEmits extends PickerPopoutEmits { }