Merge pull request #2070 from colinbreame/patch-1

Make AutocompleteOptions optional
This commit is contained in:
Bart van der Schoor
2014-04-20 22:01:48 +02:00
+3 -3
View File
@@ -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 {