comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
20 lines (18 loc) • 675 B
TypeScript
import { ExtractPropTypes, PropType } from 'vue';
import { ComicType } from '../../../utils';
export declare const linkProps: {
readonly href: StringConstructor;
readonly type: PropType<ComicType>;
readonly disabled: BooleanConstructor;
readonly underline: BooleanConstructor;
readonly target: PropType<"_blank" | "_parent" | "_self" | "_top">;
readonly download: {
readonly type: PropType<string | true>;
readonly default: any;
};
};
export type LinkProps = ExtractPropTypes<typeof linkProps>;
export declare const linkEmits: {
click: (evt: MouseEvent, href?: string) => boolean;
};
export type LinkEmits = typeof linkEmits;