mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-28 16:45:10 +08:00
Fix typing error in PolygonGraphics [Cesium] (#27563)
* Fix typing error in PolygonGraphics The property outlineColor of PolygonGraphics can accept both Property and Color types. [Discussion on AnalyticalGraphicsInc/cesium](https://github.com/AnalyticalGraphicsInc/cesium/issues/6831) * Update version * Removed the Color type from outlineColor typedef.
This commit is contained in:
5
types/cesium/index.d.ts
vendored
5
types/cesium/index.d.ts
vendored
@@ -1,8 +1,9 @@
|
||||
// Type definitions for cesium 1.46
|
||||
// Type definitions for cesium 1.47
|
||||
// Project: http://cesiumjs.org
|
||||
// Definitions by: Aigars Zeiza <https://github.com/Zuzon>
|
||||
// Harry Nicholls <https://github.com/hnipps>
|
||||
// Jared Szechy <https://github.com/szechyjs>
|
||||
// Radek Goláň jr. <https://github.com/golyalpha>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.3
|
||||
|
||||
@@ -2370,7 +2371,7 @@ declare namespace Cesium {
|
||||
stRotation: Property;
|
||||
fill: Property;
|
||||
outline: Property;
|
||||
outlineColor: Property;
|
||||
outlineColor: Color;
|
||||
outlineWidth: Property;
|
||||
perPositionHeight: Property;
|
||||
constructor(options?: {
|
||||
|
||||
Reference in New Issue
Block a user