@aplus-frontend/ui
Version:
29 lines (28 loc) • 1.12 kB
TypeScript
import { ApTextGroupProps } from './interface';
import { DefineComponent, ComponentOptionsMixin, PublicProps, CSSProperties, ComponentProvideOptions } from 'vue';
import { SpaceSize } from '@aplus-frontend/antdv/es/space';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
default?(_: {}): any;
};
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: DefineComponent<ApTextGroupProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ApTextGroupProps> & Readonly<{}>, {
size: number | "small" | "large" | "middle" | [ SpaceSize, SpaceSize];
wrap: boolean;
vertical: boolean;
direction: string;
labelStyle: CSSProperties;
colon: boolean;
align: string;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};