diff --git a/goldens/google-maps/index.api.md b/goldens/google-maps/index.api.md index c3e4bc5028a3..21729fea202c 100644 --- a/goldens/google-maps/index.api.md +++ b/goldens/google-maps/index.api.md @@ -50,8 +50,6 @@ export type Calculator = (markers: google.maps.Marker[], clusterIconStylesCount: // @public (undocumented) export interface Cluster { - // (undocumented) - new (options: ClusterOptions): Cluster; // (undocumented) bounds?: google.maps.LatLngBounds; // (undocumented) @@ -61,7 +59,7 @@ export interface Cluster { // (undocumented) marker?: Marker; // (undocumented) - readonly markers?: Marker[]; + markers?: Marker[]; // (undocumented) position: google.maps.LatLng; // (undocumented) diff --git a/src/google-maps/map-marker-clusterer/map-marker-clusterer-types.ts b/src/google-maps/map-marker-clusterer/map-marker-clusterer-types.ts index 0401167bb7be..23d5813ad8f3 100644 --- a/src/google-maps/map-marker-clusterer/map-marker-clusterer-types.ts +++ b/src/google-maps/map-marker-clusterer/map-marker-clusterer-types.ts @@ -22,13 +22,12 @@ export interface ClusterOptions { export interface Cluster { marker?: Marker; - readonly markers?: Marker[]; + markers?: Marker[]; bounds?: google.maps.LatLngBounds; position: google.maps.LatLng; count: number; push(marker: Marker): void; delete(): void; - new (options: ClusterOptions): Cluster; } export declare class MarkerClusterer extends google.maps.OverlayView {