hirsun-vuepress-theme-hope-plus
Version:
A light vuepress theme with tons of features and typewriter effect
46 lines (45 loc) • 1.43 kB
TypeScript
import type { PropType, SlotsType, VNode } from "vue";
import type { AutoLinkOptions } from "../../shared/index.js";
declare const _default: import("vue").DefineComponent<{
/**
* @description Autolink config
*/
config: {
type: PropType<AutoLinkOptions>;
required: true;
};
/**
* @description Whether it's active only when exact match
*/
exact: BooleanConstructor;
/**
* @description Whether to hide externalLinkIcon
*/
noExternalLinkIcon: BooleanConstructor;
}, () => VNode, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "focusout"[], "focusout", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
/**
* @description Autolink config
*/
config: {
type: PropType<AutoLinkOptions>;
required: true;
};
/**
* @description Whether it's active only when exact match
*/
exact: BooleanConstructor;
/**
* @description Whether to hide externalLinkIcon
*/
noExternalLinkIcon: BooleanConstructor;
}>> & {
onFocusout?: (...args: any[]) => any;
}, {
exact: boolean;
noExternalLinkIcon: boolean;
}, SlotsType<{
before?: () => VNode[] | VNode;
after?: () => VNode[] | VNode;
default?: () => VNode[] | VNode;
}>>;
export default _default;