@gorpacrate/core-graphics
Version:
A core library for creating shape-based graphic editors
13 lines (12 loc) • 462 B
TypeScript
import * as React from 'react';
import { IBoundingBox, IScene, IShapesDeclarations } from '../declarations';
import { IEditorGridState } from '../editor-state/editor-state';
export interface IStaticRendererPropTypes {
scene: IScene;
shapesDeclarations: IShapesDeclarations;
grid: IEditorGridState;
viewport: IBoundingBox;
}
export default class StaticRenderer extends React.Component<IStaticRendererPropTypes, any> {
render(): JSX.Element;
}