aircitytype 1.0.28 → 1.0.29
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
@@ -680,9 +680,10 @@ interface Marker {
|
|
680
680
|
show(ids: string[] | string, fn?: () => void): void;
|
681
681
|
hide(ids: string[] | string, fn?: () => void): void;
|
682
682
|
hideAllPopupWindow(): void;
|
683
|
+
showPopupWindow(id:string|string[]):void;
|
683
684
|
setCoordinate(
|
684
685
|
id: string,
|
685
|
-
newVal: [
|
686
|
+
newVal: number[],
|
686
687
|
fn?: () => void
|
687
688
|
): void;
|
688
689
|
}
|
package/package.json
CHANGED