tav-ui
Version:
33 lines (32 loc) • 750 B
TypeScript
import type { ExtractPropTypes, PropType } from 'vue';
export declare const basicTitleProps: {
/**
* Help text list or string
* @default: ''
*/
helpMessage: {
type: PropType<string | string[]>;
default: string;
};
/**
* Whether the color block on the left side of the title
* @default: false
*/
span: {
type: BooleanConstructor;
};
icon: {
type: StringConstructor;
};
iconColor: {
type: StringConstructor;
};
/**
* Whether to default the text, that is, not bold
* @default: false
*/
normal: {
type: BooleanConstructor;
};
};
export declare type BasicTitleProps = ExtractPropTypes<typeof basicTitleProps>;