UNPKG

@bitrix24/b24ui-nuxt

Version:

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

32 lines (31 loc) 1.11 kB
import type { AppConfig } from '@nuxt/schema'; import theme from '#build/b24ui/sidebar-body'; import type { ComponentConfig } from '../types/tv'; type SidebarBody = ComponentConfig<typeof theme, AppConfig, 'sidebarBody'>; export interface SidebarBodyProps { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; /** * @defaultValue true */ scrollbarThin?: boolean; class?: any; b24ui?: SidebarBody['slots']; } /** * @todo add Pick<Xxxx */ export interface SidebarBodySlots { default(props?: {}): any; } declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<SidebarBodyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SidebarBodyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, SidebarBodySlots>; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };