import { GradualStyleConfig, IconStyleConfig, IFillType } from "./BaseStyle"; /** * 填充样式 */ export default class FillStyle { constructor(c?: FillStyle) { c && Object.assign(this, c); } fillType?: IFillType = "none"; opacity? = 1; // 填充透明度 color?: string = "#000000"; gradual?: GradualStyleConfig; icon?: IconStyleConfig; }