Variable ShapePolyLineConst

ShapePolyLine: TObject<{
    _attributes: TOptional<TObject<{
        closed: TOptional<TBoolean>;
        color: TOptional<TString>;
        fillColor: TOptional<TString>;
    }>>;
    vertex: TUnion<[TObject<{
        _attributes: TObject<{
            lat: TNumber;
            lon: TNumber;
        }>;
    }>, TArray<TObject<{
        _attributes: TObject<{
            lat: TNumber;
            lon: TNumber;
        }>;
    }>>]>;
}> = ...