UNPKG

comic-plus

Version:

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

23 lines (21 loc) 719 B
import { ExtractPropTypes, PropType } from 'vue'; import { ComicType } from '../../../utils'; export declare const tagProps: { readonly type: PropType<ComicType>; readonly plain: BooleanConstructor; readonly light: BooleanConstructor; readonly border: BooleanConstructor; readonly size: { readonly type: NumberConstructor; readonly default: 22; }; readonly closable: BooleanConstructor; readonly transition: BooleanConstructor; readonly color: StringConstructor; readonly round: BooleanConstructor; }; export type TagProps = ExtractPropTypes<typeof tagProps>; export declare const tagEmits: { close: () => boolean; }; export type TagEmits = typeof tagEmits;