-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
declare module '@goodhood/map' { | ||
import { ReactNode } from 'react'; | ||
|
||
export interface MapProps { | ||
attribution: 'default' | 'hidden' | 'compact'; | ||
children?: ReactNode; | ||
className?: string; | ||
credentials: { | ||
key: string; | ||
map_id: string; | ||
}; | ||
locked?: boolean; | ||
lockedMobile?: boolean; | ||
} | ||
|
||
export const EyecatcherMarker: React.ComponentType<{ | ||
children?: ReactNode; | ||
className?: string; | ||
options?: { | ||
zIndexOffset: number; | ||
}; | ||
position: number[]; | ||
}>; | ||
|
||
export const InfoMarker: React.ComponentType<{ | ||
children?: ReactNode; | ||
className?: string; | ||
onClick?: () => void; | ||
position: number[]; | ||
small?: boolean; | ||
}>; | ||
|
||
export const Map: React.ComponentType<MapProps>; | ||
|
||
export const POLYGON_ACTIVE: string; | ||
export const POLYGON_SOLID: string; | ||
|
||
export const Polygon: React.ComponentType<{ | ||
area: [number, number][]; | ||
type: string; | ||
}>; | ||
} |