@matechat/core
Version:
前端智能化场景解决方案UI库,轻松构建你的AI应用。
38 lines (37 loc) • 924 B
TypeScript
import type { PropType } from 'vue';
export type IntroductionBackground = 'filled' | 'transparent';
export type IntroductionAlign = 'left' | 'center' | 'right';
export declare const props: {
logoImg: {
type: StringConstructor;
default: string;
};
logoWidth: {
type: (StringConstructor | NumberConstructor)[];
default: string;
};
logoHeight: {
type: (StringConstructor | NumberConstructor)[];
default: string;
};
title: {
type: StringConstructor;
default: string;
};
subTitle: {
type: StringConstructor;
default: string;
};
description: {
type: PropType<string[]>;
default: () => never[];
};
background: {
type: PropType<IntroductionBackground>;
default: string;
};
align: {
type: PropType<IntroductionAlign>;
default: string;
};
};