/* tslint:disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export interface TabItem { /** * tab-item 内显示的文字 */ label: string; /** * tab-item 对应的 name 值 */ name: string; /** * 徽标类型 badge-type 分为圆点“dot”和文本“text”,不设置 badge-type 则不显示徽标 */ "badge-type"?: string; /** * badge-type 为 text 的时候,徽标内的数字,为空时badge-type="text"不生效 */ "badge-text"?: string; }