From eea06e6fe928ef0ca082c2cfef17bd636c53289a Mon Sep 17 00:00:00 2001 From: Chris Wrench Date: Wed, 29 Jul 2015 15:49:16 +0100 Subject: [PATCH] Fix definition of `google.maps.GeocoderRequest()` Fixes #4364. --- googlemaps/google.maps.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googlemaps/google.maps.d.ts b/googlemaps/google.maps.d.ts index ed7908df7a..8d48758a3c 100644 --- a/googlemaps/google.maps.d.ts +++ b/googlemaps/google.maps.d.ts @@ -820,7 +820,7 @@ declare module google.maps { export interface GeocoderRequest { address?: string; bounds?: LatLngBounds; - componentRestrictions: GeocoderComponentRestrictions; + componentRestrictions?: GeocoderComponentRestrictions; location?: LatLng|LatLngLiteral; region?: string; }