UNPKG

derw

Version:

An Elm-inspired language that transpiles to TypeScript

13 lines (12 loc) 291 B
import { Block } from "./types"; export { Collision }; export { collisions }; type Collision = { name: string; indexes: number[]; }; declare function Collision(args: { name: string; indexes: number[]; }): Collision; declare function collisions(blocks: Block[]): Collision[];