aircitytype 1.0.8 → 1.0.9
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 +3 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -631,6 +631,8 @@ interface Marker3D {
|
|
631
631
|
hide(ids: string[] | string, fn?: () => void): void;
|
632
632
|
delete(ids: string[] | string): void;
|
633
633
|
deleteByGroupId(id: string): void;
|
634
|
+
hideByGroupId(groupID: string): void;
|
635
|
+
showByGroupId(groupId: string, fn?: () => void): void;
|
634
636
|
}
|
635
637
|
|
636
638
|
interface EditHelper {
|
@@ -782,4 +784,4 @@ declare var IP2: string;
|
|
782
784
|
declare var imgURL: string;
|
783
785
|
declare var Disk: string;
|
784
786
|
declare var objectIds: string[];
|
785
|
-
declare var wrap: (id: string, id1: string, url: string) => void;
|
787
|
+
declare var wrap: (id: string, id1: string, url: string) => void;
|