mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Make AutocompleteOptions optional
The maps API treats the members of AutocompleteOptions as optional - update typings to reflect this.
This commit is contained in:
Vendored
+3
-3
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user