import { AnyWorldModule, World } from "@chantey/ecs"; export interface Sketch { name?: string; module: T; start?: (world: World) => any; update?: (world: World) => any; stop?: (world: World) => any; }