UNPKG
react-hook-google-maps
Version:
latest (0.0.3)
next (0.0.3-0)
0.0.3
0.0.3-0
0.0.2
0.0.1
React useGoogleMaps hook
github.com/jmarceli/react-hook-google-maps
jmarceli/react-hook-google-maps
react-hook-google-maps
/
dist
/
useGoogleMaps.d.ts
8 lines
(7 loc)
•
252 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/// <reference types="googlemaps" />
/// <reference types="react" />
export
declare
function
useGoogleMaps
(
apiKey
:
string
,
options
: google.maps.
MapOptions
): {
ref
:
import
(
"react"
).
RefObject
<
HTMLDivElement
>;
map
:
any
;
google
:
any
; };