@nuxtwind/components
Version:
Component Library for Nuxt 3 using TailwindCSS
39 lines (38 loc) • 1.27 kB
TypeScript
import type { DrawerProps } from '../types/props.js';
export interface RequiredDrawerProps extends DrawerProps {
modelValue: boolean;
}
declare var __VLS_1: {};
type __VLS_Slots = {} & {
default?: (props: typeof __VLS_1) => any;
};
declare const __VLS_component: import("vue").DefineComponent<RequiredDrawerProps, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
"update:modelValue": (id: boolean) => any;
}, string, import("vue").PublicProps, Readonly<RequiredDrawerProps> & Readonly<{
"onUpdate:modelValue"?: ((id: boolean) => any) | undefined;
}>, {
border: boolean | string;
right: boolean;
fixed: boolean;
absolute: boolean;
overlay: boolean;
disableOverflow: boolean;
noMobile: boolean;
permanent: boolean;
transition: boolean | {
duration?: string;
ease?: string;
};
modelValue: boolean;
expandOnHover: boolean | {
width?: string;
hoverWidth?: string;
};
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};