/** * 素材项 * * @export * @interface IMaterialItem */ export interface IMaterialItem { /** * 展示文本 * * @type {string} * @memberof IMaterialItem */ text?: string; /** * 悬浮提示 * * @type {string} * @memberof IMaterialItem */ tooltip?: string; /** * 图片图标 * * @type {string} * @memberof IMaterialItem */ icon?: string; /** * 展示样式图标 * * @type {string} * @memberof IMaterialItem */ iconcls?: string; /** * 默认新建数据 * * @type {*} * @memberof IMaterialItem */ data?: any; }