UNPKG

@bitrix24/b24ui-nuxt

Version:

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

19 lines (18 loc) 818 B
import type { AppConfig } from '@nuxt/schema'; import theme from '#build/b24ui/prose/th'; import type { ComponentConfig } from '../types/utils'; type ProseTh = ComponentConfig<typeof theme, AppConfig, 'th', 'b24ui.prose'>; export interface ProseThProps { class?: any; b24ui?: ProseTh['slots']; } export interface ProseThSlots { default(props?: {}): any; } declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseThProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseThProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseThSlots>; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };