UNPKG

@tdurtschi/bug

Version:

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

8 lines (7 loc) 283 B
/// <reference types="react" /> import { Indexable } from "../../Indexable"; export interface InputSetProps { state: Indexable; updateProperty: (property: string, value: any) => any; } export declare const InputSet: ({ state, updateProperty }: InputSetProps) => JSX.Element;