maz-ui
Version:
A standalone components library for Vue.Js 3 & Nuxt.Js 3
36 lines (35 loc) • 1.35 kB
TypeScript
export interface MazBottomSheetProps {
/** @model Modal's model value */
modelValue?: boolean;
/** Remove the close button */
hideCloseButton?: boolean;
/** Remove the padding on the container */
padding?: boolean;
}
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
default?(_: {
close: () => void;
}): any;
};
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<MazBottomSheetProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
close: (value: void) => any;
open: (value: void) => any;
"update:model-value": (value: boolean) => any;
}, string, import('vue').PublicProps, Readonly<MazBottomSheetProps> & Readonly<{
onClose?: ((value?: void | undefined) => any) | undefined;
onOpen?: ((value?: void | undefined) => any) | undefined;
"onUpdate:model-value"?: ((value: boolean) => any) | undefined;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};