comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
22 lines (20 loc) • 706 B
TypeScript
import { ExtractPropTypes, PropType, Component } from 'vue';
import { ComicType, ComicSize } from '../../../utils';
export declare const tipProps: {
readonly type: PropType<ComicType>;
readonly plain: BooleanConstructor;
readonly size: PropType<ComicSize>;
readonly icon: PropType<Component>;
readonly rolling: BooleanConstructor;
readonly color: StringConstructor;
readonly closable: BooleanConstructor;
readonly hoverPause: {
readonly type: BooleanConstructor;
readonly default: true;
};
};
export type TipProps = ExtractPropTypes<typeof tipProps>;
export declare const tipEmits: {
close: () => boolean;
};
export type TipEmits = typeof tipEmits;