@minto-ai/mt-ui
Version:
UI组件库
67 lines (66 loc) • 2.47 kB
TypeScript
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
default?(_: {}): any;
};
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
readonly visibilityHeight: {
readonly type: import('vue').PropType<number | string>;
readonly validator: (value: number | string) => boolean;
readonly default: 200;
};
readonly target: {
readonly type: import('vue').PropType<string | HTMLElement>;
readonly default: "";
};
readonly right: {
readonly type: import('vue').PropType<number | string>;
readonly validator: (value: number | string) => boolean;
readonly default: 60;
};
readonly bottom: {
readonly type: import('vue').PropType<number | string>;
readonly validator: (value: number | string) => boolean;
readonly default: 60;
};
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
click: (event: MouseEvent) => void;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
readonly visibilityHeight: {
readonly type: import('vue').PropType<number | string>;
readonly validator: (value: number | string) => boolean;
readonly default: 200;
};
readonly target: {
readonly type: import('vue').PropType<string | HTMLElement>;
readonly default: "";
};
readonly right: {
readonly type: import('vue').PropType<number | string>;
readonly validator: (value: number | string) => boolean;
readonly default: 60;
};
readonly bottom: {
readonly type: import('vue').PropType<number | string>;
readonly validator: (value: number | string) => boolean;
readonly default: 60;
};
}>> & Readonly<{
onClick?: ((event: MouseEvent) => any) | undefined;
}>, {
readonly bottom: string | number;
readonly right: string | number;
readonly target: string | HTMLElement;
readonly visibilityHeight: string | number;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};