UNPKG

@gorpacrate/core-graphics

Version:

A core library for creating shape-based graphic editors

9 lines (8 loc) 293 B
import * as React from 'react'; import { ISceneMode } from '../declarations/modes'; export interface IRubberBandRendererPropTypes { mode: ISceneMode; } export default class RubberBandRenderer extends React.Component<IRubberBandRendererPropTypes, any> { render(): JSX.Element | null; }