Type Alias LineStyle

LineStyle: {
    altitude?: number;
    cap?: "round" | "square" | "butt";
    color: string;
    height?: number;
    join?: "round" | "bevel" | "miter";
    opacity?: number;
    outline?: boolean;
    shading?: Shading;
    topColor?: string;
    visible?: boolean;
    width: number;
}