UNPKG

@haelp/teto

Version:

A typescript-based controllable TETR.IO client.

78 lines (66 loc) 1.23 kB
import type { Social } from "../../social"; import type { Client } from "./client"; export interface Ribbon { session: { ribbonid: string; tokenid: string; }; ping: { recvid: number; }; "server.authorize": { success: boolean; maintenance: boolean; worker: { name: string; flag: string; }; social: { total_online: number; notifications: Social.Notification[]; presences: { [userId: string]: { status: string; detail: string; invitable: boolean; }; }; relationships: Social.Relationship[]; }; }; "server.migrate": { endpoint: string; name: string; flag: string; }; "server.migrated": {}; "server.announcement": { type: string; msg: string; ts: number; }; "server.maintenance": {}; kick: { reason: string; }; nope: { reason: string; }; error: any; err: any; packets: { packets: Buffer[]; }; notify: | { type: "err" | "warn" | "ok" | "announce"; msg: string; } | { type: "deny"; msg: string; timeout?: number; } | Client["client.notify"] | string; }