@aplus-frontend/ui
Version:
26 lines (25 loc) • 1.07 kB
TypeScript
import { ApButtonSlots, ApButtonProps } from './interface';
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { ButtonType } from '@aplus-frontend/antdv/es/button';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<ApButtonSlots> & ApButtonSlots;
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: DefineComponent<ApButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ApButtonProps> & Readonly<{}>, {
type: ButtonType | "borderLink";
minWidth: boolean | number | string;
loading: boolean | {
delay?: number;
};
lazy: boolean | number;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};