UNPKG

@tdurtschi/bug

Version:

Bug is a simulation that models a weevil walking around in an HTML canvas.

10 lines (9 loc) 313 B
/// <reference types="react" /> import Victor from "victor"; import { BugState } from "../../../core/entities/bug/bug"; export interface BugFormProps { addBug: (initial: Partial<BugState> | { size?: Victor | number; }) => any; } export declare const BugForm: (props: BugFormProps) => JSX.Element;