@arenarium/maps 1.0.32 → 1.0.34
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 +1 -4
- package/dist/index.js +2351 -2373
- package/dist/index.umd.cjs +36 -36
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -225,10 +225,7 @@ export interface MapComponent {
|
|
|
225
225
|
setPopupsContentCallback: (callback: MapComponent.PopupContentCallback) => void;
|
|
226
226
|
setPopups: (popups: Types.Popup[]) => void;
|
|
227
227
|
}
|
|
228
|
-
export declare function mountMap(options: MapOptions):
|
|
229
|
-
$on?(type: string, callback: (e: any) => void): () => void;
|
|
230
|
-
$set?(props: Partial<Record<string, any>>): void;
|
|
231
|
-
} & Record<string, any>;
|
|
228
|
+
export declare function mountMap(options: MapOptions): MapComponent;
|
|
232
229
|
export declare function unmountMap(map: ReturnType<typeof mountMap>): void;
|
|
233
230
|
|
|
234
231
|
export as namespace arenarium;
|