UNPKG

331 BTypeScriptView Raw
1import React from '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): React.JSX.Element;