We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 806887e commit 2f1e221Copy full SHA for 2f1e221
index.d.ts
@@ -114,15 +114,15 @@ export class Circle extends React.Component<any, any> {
114
115
export interface IInfoWindowProps extends Partial<google.maps.InfoWindowOptions> {
116
google: typeof google
117
- map: google.maps.Map
+ map?: google.maps.Map
118
marker?: google.maps.Marker
119
120
position?: google.maps.LatLng | google.maps.LatLngLiteral
121
visible?: boolean
122
123
children: React.ReactNode
124
- onClose(): void
125
- onOpen(): void
+ onClose()?: void
+ onOpen()?: void
126
127
}
128
0 commit comments