@bitrix24/b24ui-nuxt
Version:
Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE
30 lines (29 loc) • 1.03 kB
TypeScript
import type { AppConfig } from '@nuxt/schema';
import theme from '#build/b24ui/prose/p';
import type { ComponentConfig } from '../types/utils';
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 _default: __VLS_WithSlots<import("vue").DefineComponent<ProsePProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProsePProps> & Readonly<{}>, {
small: boolean;
accent: ProseP["variants"]["accent"];
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProsePSlots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};