UNPKG

@bitrix24/b24ui-nuxt

Version:

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

21 lines (20 loc) 976 B
import type { AppConfig } from '@nuxt/schema'; import type { ComponentConfig } from '../../types/tv'; import theme from '#build/b24ui/prose/code-preview'; type ProseCodePreview = ComponentConfig<typeof theme, AppConfig, 'codePreview', 'b24ui.prose'>; export interface ProseCodePreviewProps { class?: any; b24ui?: ProseCodePreview['slots']; } export interface ProseCodePreviewSlots { default(props?: {}): any; code(props?: {}): any; } declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<ProseCodePreviewProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseCodePreviewProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseCodePreviewSlots>; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots<T, S> = T & { new (): { $slots: S; }; };