@bitrix24/b24ui-nuxt
Version:
Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE
22 lines (21 loc) • 876 B
TypeScript
import type { AppConfig } from '@nuxt/schema';
import theme from '#build/b24ui/prose/tbody';
import type { ComponentConfig } from '../types/utils';
type ProseTbody = ComponentConfig<typeof theme, AppConfig, 'tbody', 'b24ui.prose'>;
export interface ProseTbodyProps {
class?: any;
b24ui?: ProseTbody['slots'];
}
/**
* @todo add Pick<Xxxx
*/
export interface ProseTbodySlots {
default(props?: {}): any;
}
declare const _default: __VLS_WithSlots<import("vue").DefineComponent<ProseTbodyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseTbodyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, ProseTbodySlots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};