From 869871c06962f73b37dbfdc4e5dd1773ca316f30 Mon Sep 17 00:00:00 2001 From: lobo87 Date: Mon, 24 Jul 2017 19:10:04 +0200 Subject: [PATCH] googlemaps: possibility to use an array for the property country in GeocoderComponentRestrictions class (#18212) * added cordova-plugin-native-keyboard * updated to conform linting checks * onSubmit callback is now optional * added possibility to use an array for the property country in GeocoderComponentRestrictions --- types/googlemaps/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/googlemaps/index.d.ts b/types/googlemaps/index.d.ts index b36032d298..2fea0028b8 100644 --- a/types/googlemaps/index.d.ts +++ b/types/googlemaps/index.d.ts @@ -1163,7 +1163,7 @@ declare namespace google.maps { export interface GeocoderComponentRestrictions { administrativeArea?: string; - country?: string; + country?: string | string[]; locality?: string; postalCode?: string; route?: string;