aircitytype 1.0.3 → 1.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/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -188,7 +188,7 @@ interface TileLayer {
|
|
188
188
|
fn?: () => void
|
189
189
|
): void;
|
190
190
|
// setViewportVisible(id, vp, fn)
|
191
|
-
show(p: string, fn?: any): void;
|
191
|
+
show(p: string | string[], fn?: any): void;
|
192
192
|
// showActor(id, objectId, fn)
|
193
193
|
// showActors(data, fn)
|
194
194
|
// showAllActors(tileLayerId)
|
@@ -505,6 +505,7 @@ interface CustomObject {
|
|
505
505
|
setLocation(id: string | string[], arr: [number, number, number]): void;
|
506
506
|
show(ids: string[] | string, fn?: () => void): void;
|
507
507
|
hide(ids: string[] | string, fn?: () => void): void;
|
508
|
+
restoreMaterial(ids: string | string[]): void;
|
508
509
|
}
|
509
510
|
|
510
511
|
interface Heatmap {
|