interface Base3DPaint {
    color?: string | Expression;
    fill?: boolean;
    fillColor?: string | Expression;
    stroke?: boolean;
    strokeColor?: string | Expression;
    strokeWidth?: number | Expression;
    type?: Paint3DType;
}

Hierarchy (view full)

Properties

color?: string | Expression
fill?: boolean
fillColor?: string | Expression
stroke?: boolean
strokeColor?: string | Expression
strokeWidth?: number | Expression