UNPKG

@bitrix24/b24ui-nuxt

Version:

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

28 lines (27 loc) 1.01 kB
import type { AppConfig } from '@nuxt/schema'; import theme from '#build/b24ui/prose/p'; import type { ComponentConfig } from '../../types/tv'; type ProseP = ComponentConfig<typeof theme, AppConfig, 'p', 'b24ui.prose'>; export interface ProsePProps { /** * @defaultValue false */ small?: boolean; /** * @defaultValue 'default' */ accent?: ProseP['variants']['accent']; class?: any; b24ui?: ProseP['slots']; } export interface ProsePSlots { default(props?: {}): any; } declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<ProsePProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProsePProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProsePSlots>; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };