UNPKG

comic-plus

Version:

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

19 lines (17 loc) 731 B
import { PropType, ExtractPropTypes } from 'vue'; import { ComicSize, Arrayable } from '../../../utils'; export declare const selectProps: { readonly modelValue: PropType<Arrayable<string | number>>; readonly multiple: BooleanConstructor; readonly size: PropType<ComicSize>; readonly disabled: BooleanConstructor; readonly clearable: BooleanConstructor; readonly placeholder: StringConstructor; }; export type SelectProps = ExtractPropTypes<typeof selectProps>; export declare const selectEmits: { "update:modelValue": (value: Arrayable<string | number>) => boolean; change: (value: Arrayable<string | number>) => boolean; clear: () => boolean; }; export type SelectEmits = typeof selectEmits;