From 38cd1cf18d4be0a818d4164b6de05760702feca0 Mon Sep 17 00:00:00 2001 From: fco Date: Thu, 13 Oct 2016 11:05:44 +0200 Subject: [PATCH] fix(googlemaps): Expose 'type' property in GoogleMapsLatLngBounds #693 --- src/plugins/googlemaps.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/plugins/googlemaps.ts b/src/plugins/googlemaps.ts index f2b20c0652..2cccc17712 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;