@bitrix24/b24ui-nuxt
Version:
Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE
26 lines (25 loc) • 934 B
TypeScript
import type { AppConfig } from '@nuxt/schema';
import theme from '#build/b24ui/navbar';
import type { ComponentConfig } from '../types/utils';
type Navbar = ComponentConfig<typeof theme, AppConfig, 'navbar'>;
export interface NavbarProps {
/**
* The element or component this component should render as.
* @defaultValue 'nav'
*/
as?: any;
class?: any;
b24ui?: Navbar['slots'];
}
export interface NavbarSlots {
default(props?: {}): any;
}
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<NavbarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NavbarProps> & Readonly<{}>, {
as: any;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, NavbarSlots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};