UNPKG

dk-plus

Version:
15 lines (14 loc) 656 B
import type { returnType } from '../../_utils/props'; import type { ExtractPropTypes, PropType } from 'vue'; import type { ColorFormat } from './type'; export declare const dkColorPickerPanelProps: { readonly modelValue: returnType<PropType<"">, "" | null>; readonly disabled: returnType<BooleanConstructor, boolean>; readonly showAlpha: returnType<BooleanConstructor, boolean>; readonly format: { readonly type: PropType<ColorFormat>; readonly default: "hex"; }; readonly width: returnType<PropType<"280px">, "280px" | null>; }; export type ColorPickerPanelProps = ExtractPropTypes<typeof dkColorPickerPanelProps>;