From 018e53711d258dcd5ff296a76d75f6e22d6fd990 Mon Sep 17 00:00:00 2001 From: Simon Soriano Date: Wed, 22 Feb 2017 13:41:00 -0500 Subject: [PATCH] Update AutoCompleteOptions according to https://developers.google.com/maps/documentation/javascript/reference#AutocompleteOptions --- googlemaps/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/googlemaps/index.d.ts b/googlemaps/index.d.ts index f94b29525c..3bb12e8d24 100644 --- a/googlemaps/index.d.ts +++ b/googlemaps/index.d.ts @@ -2205,6 +2205,8 @@ declare namespace google.maps { export interface AutocompleteOptions { bounds?: LatLngBounds|LatLngBoundsLiteral; componentRestrictions?: ComponentRestrictions; + placeIdOnly?: boolean; + strictBounds?: boolean; types?: string[]; }