Skip to content

Commit

Permalink
fix(googlemaps): Expose 'type' property in GoogleMapsLatLngBounds #693 (
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinFrick authored and ihadeed committed Oct 13, 2016
1 parent 43c8592 commit 74a252b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/plugins/googlemaps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 74a252b

Please sign in to comment.