sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
14 lines (13 loc) • 662 B
TypeScript
import { type PopoutInputSlots, type PopoutInputProps } from '../popout-input/common';
import { type ColorPickerPopoutProps, type ColorPickerPopoutEmits } from '../color-picker-popout/common';
import { type DefaultProps } from '../config';
export interface ColorPickerInputProps extends ColorPickerPopoutProps, Omit<PopoutInputProps, 'modelValue'> {
valueOnClear?: () => any;
}
export declare const defaultColorPickerInputProps: () => DefaultProps<ColorPickerInputProps>;
export interface ColorPickerInputSlots extends PopoutInputSlots {
}
export interface ColorPickerInputEmits extends ColorPickerPopoutEmits {
}
export interface ColorPickerInputExpose {
}