@agendize/design-system
Version:
Agendize web design system
40 lines • 1.27 kB
TypeScript
interface Props {
id?: string;
icon?: string;
title?: string;
}
type __VLS_Props = Props;
declare function toggle(open?: boolean): void;
type __VLS_PublicProps = {
'opened'?: boolean;
} & __VLS_Props;
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
content?(_: {}): any;
};
refs: {
details: HTMLDetailsElement;
};
rootEl: HTMLDetailsElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {
toggle: typeof toggle;
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:opened": (value: boolean) => any;
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onUpdate:opened"?: ((value: boolean) => any) | undefined;
}>, {
id: string;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {
details: HTMLDetailsElement;
}, HTMLDetailsElement>;
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