Make AutocompleteOptions optional

The maps API treats the members of AutocompleteOptions as optional - update typings to reflect this.
This commit is contained in:
colinbreame
2014-04-20 15:11:50 +01:00
parent 1e03d6b6d2
commit 8afb1c1a5f

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 {