@nuxt/devtools-ui-kit
Version:
<a href="https://www.npmjs.com/package/@nuxt/devtools-ui-kit"><img src="https://flat.badgen.net/npm/v/@nuxt/devtools-ui-kit" alt="npm version"></a>
39 lines (38 loc) • 1.29 kB
TypeScript
type __VLS_Props = {
icon?: string;
text?: string;
description?: string;
containerClass?: string;
headerClass?: string;
collapse?: boolean;
open?: boolean;
padding?: boolean | string;
};
declare var __VLS_7: {}, __VLS_9: {}, __VLS_11: {}, __VLS_18: {}, __VLS_20: {}, __VLS_22: {};
type __VLS_Slots = {} & {
text?: (props: typeof __VLS_7) => any;
} & {
description?: (props: typeof __VLS_9) => any;
} & {
actions?: (props: typeof __VLS_11) => any;
} & {
details?: (props: typeof __VLS_18) => any;
} & {
default?: (props: typeof __VLS_20) => any;
} & {
footer?: (props: typeof __VLS_22) => any;
};
declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
containerClass: string;
collapse: boolean;
open: boolean;
padding: boolean | string;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
declare const _default: typeof __VLS_export;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};