epic-designer
Version:
基于vue3的设计器,可视化开发页面表单
42 lines (41 loc) • 1.28 kB
TypeScript
import { PanelName } from './collapseContext';
interface Props {
bordered?: boolean;
customClass?: string;
defaultExpanded?: boolean;
disabled?: boolean;
name?: PanelName;
title?: string;
}
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
header?(_: {
active: boolean;
}): any;
arrow?(_: {}): any;
default?(_: {}): any;
};
refs: {
contentRef: HTMLDivElement;
};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {
name: PanelName;
title: string;
bordered: boolean;
customClass: string;
defaultExpanded: boolean;
disabled: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
contentRef: HTMLDivElement;
}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};