/*** * @file:色块model * @author: linkun.he * @Date: 2019-06-24 17:07:29 */ export interface HollowColorLump { type?: string; label?: string; matchLable?: string; value?: string; class?: string; style?: string; config?: HollowConfig[]; } export interface HollowConfig { code?: string; color?: string; } export interface LumpRenderConf { name?: string; color?: string; }