@haelp/teto
Version:
A typescript-based controllable TETR.IO client.
16 lines (13 loc) • 449 B
text/typescript
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;