@agendize/design-system
Version:
Agendize web design system
31 lines • 1.24 kB
TypeScript
import { TextAlign } from "../../viewModel";
import { SectionProperties } from "./viewModel";
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
start?(_: {}): any;
action?(_: {}): any;
content?(_: {}): any;
};
refs: {};
rootEl: HTMLElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import("vue").DefineComponent<SectionProperties, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SectionProperties> & Readonly<{}>, {
id: string;
titleLevel: import("./viewModel").TitleLevelOption;
border: boolean;
variant: import("./viewModel").SectionType;
padding: import("./viewModel").SectionPaddingOption;
bodyStretch: boolean;
containerGap: 2 | 3 | 5;
textAlign: TextAlign;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};
//# sourceMappingURL=View.vue.d.ts.map