oak-frontend-base/lib/components/map/location/index.d.ts

9 lines
224 B
TypeScript

/// <reference types="react" />
declare type LocationProps = {
poiName?: string;
coordinate?: [number, number];
areaId?: string;
};
export default function Location(props: LocationProps): JSX.Element;
export {};