@ino-cesium/material 0.0.2 → 0.0.4

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +8 -8
  2. package/package.json +4 -3
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(): Cesium.Event<(...args: any[]) => void>;
129
+ get definitionChanged(): any;
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(): Cesium.Event<(...args: any[]) => void>;
152
+ get definitionChanged(): any;
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(): Cesium.Event<(...args: any[]) => void>;
172
+ get definitionChanged(): any;
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(): Cesium.Event<(...args: any[]) => void>;
191
+ get definitionChanged(): any;
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(): Cesium.Event<(...args: any[]) => void>;
210
+ get definitionChanged(): any;
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(): Cesium.Event<(...args: any[]) => void>;
229
+ get definitionChanged(): any;
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(): Cesium.Event<(...args: any[]) => void>;
253
+ get definitionChanged(): any;
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(): Cesium.Event<(...args: any[]) => void>;
272
+ get definitionChanged(): any;
273
273
  getType(): string;
274
274
  getValue(time: Cesium.JulianDate, result: any): any;
275
275
  equals(other: EllipsoidElectricMaterialProperty): boolean;
package/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "@ino-cesium/material",
3
3
  "type": "module",
4
- "version": "0.0.2",
4
+ "version": "0.0.4",
5
5
  "author": "koino",
6
+ "types": "./dist/index.d.ts",
6
7
  "keywords": [
7
8
  "cesium",
8
9
  "ino-cesium",
9
10
  "ino-cesium-material"
10
11
  ],
11
12
  "exports": {
12
- ".": "./src/index.js"
13
+ ".": "./dist/index.js"
13
14
  },
14
15
  "typesVersions": {
15
16
  "*": {
@@ -30,7 +31,7 @@
30
31
  "cesium": "*"
31
32
  },
32
33
  "dependencies": {
33
- "@ino-cesium/common": "0.0.2"
34
+ "@ino-cesium/common": "0.0.4"
34
35
  },
35
36
  "scripts": {
36
37
  "build": "rimraf dist && rollup -c",