@angular/google-maps 21.2.0-next.4 → 21.2.0-rc.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/google-maps",
3
- "version": "21.2.0-next.4",
3
+ "version": "21.2.0-rc.0",
4
4
  "description": "Angular Google Maps",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1761,13 +1761,12 @@ interface ClusterOptions {
1761
1761
  }
1762
1762
  interface Cluster {
1763
1763
  marker?: Marker;
1764
- readonly markers?: Marker[];
1764
+ markers?: Marker[];
1765
1765
  bounds?: google.maps.LatLngBounds;
1766
1766
  position: google.maps.LatLng;
1767
1767
  count: number;
1768
1768
  push(marker: Marker): void;
1769
1769
  delete(): void;
1770
- new (options: ClusterOptions): Cluster;
1771
1770
  }
1772
1771
  declare class MarkerClusterer extends google.maps.OverlayView {
1773
1772
  onClusterClick: onClusterClickHandler;