UNPKG

@bitrix24/b24ui-nuxt

Version:

Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE

29 lines (28 loc) 1.03 kB
import type { AppConfig } from '@nuxt/schema'; import theme from '#build/b24ui/sidebar-spacer'; import type { ComponentConfig } from '../types/utils'; type SidebarSpacer = ComponentConfig<typeof theme, AppConfig, 'sidebarSpacer'>; export interface SidebarSpacerProps { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; class?: any; b24ui?: SidebarSpacer['slots']; } /** * @todo add Pick<Xxxx */ export interface SidebarSpacerSlots { default(props?: {}): any; } declare const _default: __VLS_WithSlots<import("vue").DefineComponent<SidebarSpacerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SidebarSpacerProps> & Readonly<{}>, { as: any; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, SidebarSpacerSlots>; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };