diff --git a/README.md b/README.md index 53365a0..87e2ecc 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ const App = () => { | property | type | description | | -------------- | -------- | -------------------------------------------------------------------------------------------------- | -| `types` | `string` | `(cities)`, `geocode`, `establishments`, or `address` | +| `types` | `string` | `(regions`, `(cities)`, `geocode`, `establishment`, or `address` | | `language` | `string` | Language for results to return | | `location` | `string` | `37.7749, -122.4194` or `San Francisco, CA` | | `radius` | number | Results within the radius of the search (meters) | diff --git a/index.d.ts b/index.d.ts index efa9289..82e745d 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,5 +1,5 @@ interface GoogleProps { - types?: '(cities)' | 'geocode' | 'establishments' | 'address' + types?: '(regions)' | '(cities)' | 'geocode' | 'establishment' | 'address' language?: string location?: '' radius?: number