/** 渐变色配置 */ export interface GradientColors { /** 渐变起始颜色 */ start: string; /** 渐变结束颜色 */ end: string; } /** YcFormContainerHeader 组件属性 */ export interface YcFormContainerHeaderProps { /** 标题文本 */ title: string; /** 自定义类名 */ class?: string; /** 标题颜色,默认使用 --el-text-color-regular */ titleColor?: string; /** * 自定义左侧竖线渐变色 * @example { start: '#386bfd', end: '#7b52fe' } * 默认使用 CSS 变量:--pure-button-primary-gradient-start/end * 如未定义则回退到 --el-color-primary */ gradientColors?: GradientColors; }