From e007bade45eb366c3596412fd67941d8d6ded0b2 Mon Sep 17 00:00:00 2001 From: Mark Nelissen Date: Thu, 2 Jan 2020 19:21:04 +0100 Subject: [PATCH] [react-places-autocomplete] add session token to searchOptions (#41295) * add session token to searchOptions * add to maintainers * update typescript version * Update types/react-places-autocomplete/index.d.ts Co-Authored-By: Andrew M. Co-authored-by: Andrew M. --- types/react-places-autocomplete/index.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/types/react-places-autocomplete/index.d.ts b/types/react-places-autocomplete/index.d.ts index bf11a9fa30..2c991b3182 100644 --- a/types/react-places-autocomplete/index.d.ts +++ b/types/react-places-autocomplete/index.d.ts @@ -4,8 +4,9 @@ // Andrew Makarov // Nokky Goren // Aziz Khambati +// Mark Nelissen // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -// TypeScript Version: 2.8 +// TypeScript Version: 3.0 // /// import * as React from 'react'; @@ -38,6 +39,7 @@ export interface PropTypes { location?: google.maps.LatLng | google.maps.LatLngLiteral; offset?: number | string; radius?: number | string; + sessionToken?: any; types?: string[]; }; debounce?: number;