[cesium] Fix LabelGraphics property types (#45086)

This commit is contained in:
jrafidi 2020-05-27 14:28:41 -07:00 committed by GitHub
parent cc38d945b2
commit 55e6ea8afd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2705,21 +2705,21 @@ declare namespace Cesium {
definitionChanged: Event;
text: Property;
font: string;
style: LabelStyle | Property;
style: Property;
fillColor: Color;
outlineColor: Color;
outlineWidth: number;
horizontalOrigin: Property;
verticalOrigin: VerticalOrigin | Property;
verticalOrigin: Property;
eyeOffset: Property;
pixelOffset: Cartesian2 | Property;
pixelOffset: Property;
backgroundColor: Property;
scale: Property;
showBackground?: Property;
show: Property;
translucencyByDistance: Property;
pixelOffsetScaleByDistance: Property;
distanceDisplayCondition?: DistanceDisplayCondition | Property;
distanceDisplayCondition?: Property;
constructor(options?: {
text?: Property | string;
font?: string;