comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
20 lines (18 loc) • 623 B
TypeScript
import { ExtractPropTypes } from 'vue';
export declare const tagComplexProps: {
readonly type: StringConstructor;
readonly size: {
readonly type: NumberConstructor;
readonly default: 22;
};
readonly closable: BooleanConstructor;
readonly transition: BooleanConstructor;
readonly color: StringConstructor;
readonly title: StringConstructor;
readonly round: BooleanConstructor;
};
export type TagComplexProps = ExtractPropTypes<typeof tagComplexProps>;
export declare const tagComplexEmits: {
close: () => boolean;
};
export type TagComplexEmits = typeof tagComplexEmits;