From 74a252b3246c6aab25197fed53de4e747e9d10a3 Mon Sep 17 00:00:00 2001 From: Colin Frick Date: Fri, 14 Oct 2016 01:00:15 +0200 Subject: [PATCH] fix(googlemaps): Expose 'type' property in GoogleMapsLatLngBounds #693 (#694) --- 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;