@aplus-frontend/ui
Version:
45 lines (44 loc) • 1.6 kB
TypeScript
import { ModalLayoutProps } from '../interface';
import { DefineComponent, ComponentOptionsMixin, PublicProps, VNodeArrayChildren, VNode, RendererNode, RendererElement, ComponentProvideOptions } from 'vue';
type __VLS_Props = ModalLayoutProps & {
layoutType?: 'two-column';
};
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
default?(_: {}): any;
default?(_: {}): any;
rightTitle?(_: {
count: number;
}): any;
renderSelectedItem?(_: {
record: any;
actions: {
deleteItem: (record: any) => void;
deleteCurrent: () => void;
};
}): any;
rightBottom?(_: {
records: any[];
actions: {
deleteItem: (record: any) => void;
};
}): any;
};
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
leftTitle: string | number | boolean | void | VNodeArrayChildren | VNode<RendererNode, RendererElement, {
[key: string]: any;
}> | null;
layoutType: "two-column";
}, {}, {}, {}, 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;
};
};