diff --git a/src/plugins/googlemaps.ts b/src/plugins/googlemaps.ts index f2b20c065..2cccc1771 100644 --- a/src/plugins/googlemaps.ts +++ b/src/plugins/googlemaps.ts @@ -885,6 +885,7 @@ export class GoogleMapsLatLngBounds { @InstanceProperty get northeast(): GoogleMapsLatLng { return; } @InstanceProperty get southwest(): GoogleMapsLatLng { return; } + @InstanceProperty get type(): string { return; } constructor(southwestOrArrayOfLatLng: GoogleMapsLatLng | GoogleMapsLatLng[], northeast?: GoogleMapsLatLng) { let args = !!northeast ? [southwestOrArrayOfLatLng, northeast] : southwestOrArrayOfLatLng;