UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

18 lines (16 loc) 657 B
import { PropType, ExtractPropTypes } from 'vue'; import { ComicSize } from '../../../utils'; export declare const colorPickerProps: { readonly modelValue: StringConstructor; readonly alpha: BooleanConstructor; readonly format: StringConstructor; readonly size: PropType<ComicSize>; readonly disabled: BooleanConstructor; readonly predefine: PropType<string[]>; }; export type ColorPickerProps = ExtractPropTypes<typeof colorPickerProps>; export declare const colorPickerEmits: { "update:modelValue": (value: string) => boolean; change: (value: string) => boolean; }; export type ColorPickerEmits = typeof colorPickerEmits;