@aplus-frontend/ui
Version:
45 lines (44 loc) • 2.31 kB
TypeScript
import { CreateComponentPublicInstanceWithMixins, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps, Plugin } from 'vue';
import { ApTitleProps } from './interface';
export * from './interface';
declare const ApTitle: {
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApTitleProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
title: string;
placement: "top" | "left" | "right" | "bottom" | "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom";
trigger: "hover" | "focus" | "click" | "contextmenu";
helpMessage: string;
helpIconColor: string;
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, {
P: {};
B: {};
D: {};
C: {};
M: {};
Defaults: {};
}, Readonly< ApTitleProps> & Readonly<{}>, {}, {}, {}, {}, {
title: string;
placement: "top" | "left" | "right" | "bottom" | "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom";
trigger: "hover" | "focus" | "click" | "contextmenu";
helpMessage: string;
helpIconColor: string;
}>;
__isFragment?: never;
__isTeleport?: never;
__isSuspense?: never;
} & ComponentOptionsBase<Readonly< ApTitleProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
title: string;
placement: "top" | "left" | "right" | "bottom" | "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | "leftTop" | "leftBottom" | "rightTop" | "rightBottom";
trigger: "hover" | "focus" | "click" | "contextmenu";
helpMessage: string;
helpIconColor: string;
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
$slots: {
prefix?(_: {}): any;
suffix?(_: {}): any;
};
}) & ( Plugin & (new (...args: any[]) => {
$props: {
onClick?: () => void;
};
}));
export { ApTitle };