UNPKG

@bitrix24/b24ui-nuxt

Version:

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

33 lines (32 loc) 1.25 kB
import type { AppConfig } from '@nuxt/schema'; import theme from '#build/b24ui/sidebar-footer'; import type { ComponentConfig } from '../types/tv'; /** * @deprecated This component is deprecated and will be removed in version `3.0.0` * - use [DashboardSidebar](https://bitrix24.github.io/b24ui/docs/components/dashboard-sidebar/) * * @removed 3.0.0 */ type SidebarFooter = ComponentConfig<typeof theme, AppConfig, 'sidebarFooter'>; export interface SidebarFooterProps { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; class?: any; b24ui?: SidebarFooter['slots']; } export interface SidebarFooterSlots { default(props?: {}): any; } declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<SidebarFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SidebarFooterProps> & Readonly<{}>, { as: any; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, SidebarFooterSlots>; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };