UNPKG

@glodon-aiot/react-components

Version:

aiot react components

12 lines (11 loc) 339 B
/// <reference types="react" /> import { Point, PolygonOptions } from '.'; export interface PolygonElementProps { points: Point[]; options?: PolygonOptions; editing: boolean; onClose?(index: number): void; } export interface State { } export default function PolygonElement(props: PolygonElementProps): JSX.Element | null;