UNPKG

@bitrix24/b24ui-nuxt

Version:

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

22 lines (21 loc) 885 B
import type { AppConfig } from '@nuxt/schema'; import theme from '#build/b24ui/prose/strong'; import type { ComponentConfig } from '../types/utils'; type ProseStrong = ComponentConfig<typeof theme, AppConfig, 'strong', 'b24ui.prose'>; export interface ProseStrongProps { class?: any; b24ui?: ProseStrong['slots']; } /** * @todo add Pick<Xxxx */ export interface ProseStrongSlots { default(props?: {}): any; } declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseStrongProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseStrongProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseStrongSlots>; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };