UNPKG

@bitrix24/b24ui-nuxt

Version:

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

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