neshan-map
Version:
### Developed by [Neshan Maps Platform team](https://platform.neshan.org). ### For Farsi/Persian document, [click here](https://developers.neshan.org/react-component/).
19 lines (18 loc) • 463 B
TypeScript
import React from 'react';
import { NeshanMapProps } from './types';
declare global {
interface Window {
L?: any;
}
}
declare const NeshanMap: (props: NeshanMapProps) => React.DetailedReactHTMLElement<{
ref: React.MutableRefObject<null>;
style: {
width: string;
height: string;
margin: number;
padding: number;
background: string;
};
}, HTMLElement>;
export default NeshanMap;