@ino-cesium/material 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +8 -8
- package/package.json +10 -9
package/dist/index.d.ts
CHANGED
|
@@ -126,7 +126,7 @@ declare class PolylineTrailMaterialProperty extends BaseMaterialProperty {
|
|
|
126
126
|
private image;
|
|
127
127
|
constructor(options: IPolylineTrailMaterialOptions);
|
|
128
128
|
get isConstant(): boolean;
|
|
129
|
-
get definitionChanged(): any
|
|
129
|
+
get definitionChanged(): Cesium.Event<(...args: any[]) => void>;
|
|
130
130
|
getType(): string;
|
|
131
131
|
getValue(time: Cesium.JulianDate, result: any): any;
|
|
132
132
|
equals(other: PolylineTrailMaterialProperty): any;
|
|
@@ -149,7 +149,7 @@ declare class PolylineFlowMaterialProperty extends BaseMaterialProperty {
|
|
|
149
149
|
private name;
|
|
150
150
|
constructor(options: IPolylineFlowMaterialOptions);
|
|
151
151
|
get isConstant(): boolean;
|
|
152
|
-
get definitionChanged(): any
|
|
152
|
+
get definitionChanged(): Cesium.Event<(...args: any[]) => void>;
|
|
153
153
|
getType(): string;
|
|
154
154
|
getValue(time: Cesium.JulianDate, result: any): any;
|
|
155
155
|
equals(other: PolylineFlowMaterialProperty): boolean;
|
|
@@ -169,7 +169,7 @@ declare class CircleWaveMaterialProperty extends BaseMaterialProperty {
|
|
|
169
169
|
private name;
|
|
170
170
|
constructor(options?: ICircleWaveMaterialOptions);
|
|
171
171
|
get isConstant(): boolean;
|
|
172
|
-
get definitionChanged(): any
|
|
172
|
+
get definitionChanged(): Cesium.Event<(...args: any[]) => void>;
|
|
173
173
|
getType(): string;
|
|
174
174
|
getValue(time: Cesium.JulianDate, result: any): any;
|
|
175
175
|
equals(other: CircleWaveMaterialProperty): any;
|
|
@@ -188,7 +188,7 @@ declare class CircleRaderWaveMaterialProperty extends BaseMaterialProperty {
|
|
|
188
188
|
private name;
|
|
189
189
|
constructor(options: ICircleRaderWaveMaterialOptions);
|
|
190
190
|
get isConstant(): boolean;
|
|
191
|
-
get definitionChanged(): any
|
|
191
|
+
get definitionChanged(): Cesium.Event<(...args: any[]) => void>;
|
|
192
192
|
getType(): string;
|
|
193
193
|
getValue(time: Cesium.JulianDate, result: any): any;
|
|
194
194
|
equals(other: CircleRaderWaveMaterialProperty): boolean;
|
|
@@ -207,7 +207,7 @@ declare class CircleRaderFanMaterialProperty extends BaseMaterialProperty {
|
|
|
207
207
|
private name;
|
|
208
208
|
constructor(options: ICircleRaderFanMaterialOptions);
|
|
209
209
|
get isConstant(): boolean;
|
|
210
|
-
get definitionChanged(): any
|
|
210
|
+
get definitionChanged(): Cesium.Event<(...args: any[]) => void>;
|
|
211
211
|
getType(): string;
|
|
212
212
|
getValue(time: Cesium.JulianDate, result: any): any;
|
|
213
213
|
equals(other: CircleRaderFanMaterialProperty): boolean;
|
|
@@ -226,7 +226,7 @@ declare class CircleApertureMaterialProperty extends BaseMaterialProperty {
|
|
|
226
226
|
private name;
|
|
227
227
|
constructor(options?: ICircleApertureMaterialOptions);
|
|
228
228
|
get isConstant(): boolean;
|
|
229
|
-
get definitionChanged(): any
|
|
229
|
+
get definitionChanged(): Cesium.Event<(...args: any[]) => void>;
|
|
230
230
|
getType(): string;
|
|
231
231
|
getValue(time: Cesium.JulianDate, result: any): any;
|
|
232
232
|
equals(other: CircleApertureMaterialProperty): any;
|
|
@@ -250,7 +250,7 @@ declare class LightWallMaterialProperty extends BaseMaterialProperty {
|
|
|
250
250
|
private name;
|
|
251
251
|
constructor(options: ILightWallMaterialOptions);
|
|
252
252
|
get isConstant(): boolean;
|
|
253
|
-
get definitionChanged(): any
|
|
253
|
+
get definitionChanged(): Cesium.Event<(...args: any[]) => void>;
|
|
254
254
|
getType(): string;
|
|
255
255
|
getValue(time: Cesium.JulianDate, result: any): any;
|
|
256
256
|
equals(other: LightWallMaterialProperty): any;
|
|
@@ -269,7 +269,7 @@ declare class EllipsoidElectricMaterialProperty extends BaseMaterialProperty {
|
|
|
269
269
|
private name;
|
|
270
270
|
constructor(options: IEllipsoidElectricMaterialOptions);
|
|
271
271
|
get isConstant(): boolean;
|
|
272
|
-
get definitionChanged(): any
|
|
272
|
+
get definitionChanged(): Cesium.Event<(...args: any[]) => void>;
|
|
273
273
|
getType(): string;
|
|
274
274
|
getValue(time: Cesium.JulianDate, result: any): any;
|
|
275
275
|
equals(other: EllipsoidElectricMaterialProperty): boolean;
|
package/package.json
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ino-cesium/material",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.5",
|
|
5
5
|
"author": "koino",
|
|
6
|
-
"types": "./dist/index.d.ts",
|
|
7
6
|
"keywords": [
|
|
8
7
|
"cesium",
|
|
9
8
|
"ino-cesium",
|
|
@@ -12,18 +11,19 @@
|
|
|
12
11
|
"exports": {
|
|
13
12
|
".": "./dist/index.js"
|
|
14
13
|
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist/*.d.ts",
|
|
16
|
+
"dist/*.js",
|
|
17
|
+
"README.MD"
|
|
18
|
+
],
|
|
15
19
|
"typesVersions": {
|
|
16
20
|
"*": {
|
|
17
21
|
"*": [
|
|
18
|
-
"./src/*"
|
|
22
|
+
"./src/*",
|
|
23
|
+
"./dist/*"
|
|
19
24
|
]
|
|
20
25
|
}
|
|
21
26
|
},
|
|
22
|
-
"files": [
|
|
23
|
-
"dist/*.d.ts",
|
|
24
|
-
"dist/*.js",
|
|
25
|
-
"README.MD"
|
|
26
|
-
],
|
|
27
27
|
"publishConfig": {
|
|
28
28
|
"access": "public"
|
|
29
29
|
},
|
|
@@ -31,8 +31,9 @@
|
|
|
31
31
|
"cesium": "*"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@ino-cesium/common": "0.0.
|
|
34
|
+
"@ino-cesium/common": "0.0.5"
|
|
35
35
|
},
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
36
37
|
"scripts": {
|
|
37
38
|
"build": "rimraf dist && rollup -c",
|
|
38
39
|
"clean": "rimraf dist",
|