Type Alias CustomAttrs

CustomAttrs: {
    effects: CellEffect[];
    style: {
        curveType?: CurveType;
        fill?: string | null | PathFill;
        lineDash?: number[];
        stroke?:
            | string
            | CanvasGradient
            | CanvasPattern
            | null;
        strokeWidth?: number;
    } | null;
    [key: string]: any;
}