From 8afb1c1a5f133233c910db9dd920445a115e4c17 Mon Sep 17 00:00:00 2001 From: colinbreame Date: Sun, 20 Apr 2014 15:11:50 +0100 Subject: [PATCH] Make AutocompleteOptions optional The maps API treats the members of AutocompleteOptions as optional - update typings to reflect this. --- googlemaps/google.maps.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/googlemaps/google.maps.d.ts b/googlemaps/google.maps.d.ts index 86a446508..27275f098 100644 --- a/googlemaps/google.maps.d.ts +++ b/googlemaps/google.maps.d.ts @@ -1356,9 +1356,9 @@ declare module google.maps { } export interface AutocompleteOptions { - bounds: LatLngBounds; - componentRestrictions: ComponentRestrictions; - types: string[]; + bounds?: LatLngBounds; + componentRestrictions?: ComponentRestrictions; + types?: string[]; } export interface ComponentRestrictions {