Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ declare module 'react-google-maps/lib/components/GoogleMap' {
import { Component } from 'react'

export interface GoogleMapProps {
defaultCenter?: google.maps.LatLng | google.maps.LatLngLiteral
children?:ReactNode
defaultCenter?: google.maps.LatLng | google.maps.LatLngLiteral
defaultClickableIcons?: boolean
defaultHeading?: number
defaultMapTypeId?: google.maps.MapTypeId | string
Expand Down Expand Up @@ -295,7 +296,8 @@ declare module 'react-google-maps/lib/components/InfoWindow' {
import { Component } from 'react'

export interface InfoWindowProps {
defaultOptions?: google.maps.InfoWindowOptions
children?:ReactNode
defaultOptions?: google.maps.InfoWindowOptions
defaultPosition?: google.maps.LatLng | google.maps.LatLngLiteral
defaultZIndex?: number
options?: google.maps.InfoWindowOptions
Expand Down Expand Up @@ -344,7 +346,8 @@ declare module 'react-google-maps/lib/components/Marker' {
import { Component } from 'react'

export interface MarkerProps {
defaultAnimation?: google.maps.Animation
children?:ReactNode
defaultAnimation?: google.maps.Animation
defaultClickable?: boolean
defaultCursor?: string
defaultDraggable?: boolean
Expand Down