UNPKG

330 BTypeScriptView Raw
1/// <reference types="react" />
2import { IBaseGemoProps } from './Base';
3export interface IGemo extends IBaseGemoProps {
4 /** 几何标记类型 */
5 type: 'area' | 'edge' | 'heatmap' | 'interval' | 'line' | 'point' | 'polygon' | 'line-advance';
6 [key: string]: any;
7}
8export default function (props: IGemo): JSX.Element;