UNPKG

277 BTypeScriptView Raw
1import React from 'react';
2import { InteractionOption } from '@antv/g2/lib/interface';
3export interface IInteractionProps extends InteractionOption, React.Props<any> {
4 type: string;
5 config?: object;
6}
7export default function Interaction(props: IInteractionProps): any;