sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
20 lines (19 loc) • 851 B
TypeScript
import { type DefaultProps } from '../config';
import { type TransitionHookEmits } from '../popup/common';
import { type FormPopoutProps } from '../../use/useFormPopout';
import { type ColorPickerProps } from '../color-picker/common';
export interface ColorPickerPopoutProps extends FormPopoutProps, ColorPickerProps {
}
export declare const defaultColorPickerPopoutProps: () => DefaultProps<ColorPickerPopoutProps>;
export interface ColorPickerPopoutSlots {
title?(props: Record<string, never>): any;
'title-prepend'?(props: Record<string, never>): any;
}
export interface ColorPickerPopoutEmits extends TransitionHookEmits {
(e: 'update:visible', visible: boolean): void;
(e: 'update:model-value', value: string): void;
(e: 'change', value: string): void;
(e: 'confirm'): void;
}
export interface ColorPickerPopoutExpose {
}