UNPKG

@haelp/teto

Version:

A typescript-based controllable TETR.IO client.

14 lines 484 B
import type { Client } from "./client"; import type { Game } from "./game"; import type { Ribbon } from "./ribbon"; import type { Room } from "./room"; import type { Social } from "./social"; import type { Staff } from "./staff"; export * from "./client"; export * from "./game"; export * from "./ribbon"; export * from "./room"; export * from "./social"; export * from "./staff"; export type all = Client & Game & Ribbon & Room & Social & Staff; //# sourceMappingURL=wrapper.d.ts.map