@haelp/teto
Version:
A typescript-based controllable TETR.IO client.
32 lines (31 loc) • 1.11 kB
TypeScript
import { Game, User } from "../../types";
import { RibbonOptions } from "../ribbon/types";
export type ClientOptions = ({
/** The account's JWT authentication token (you can get this from the browser cookies when logging in on https://tetr.io) */
token: string;
} | {
/** The account's username */
username: string;
/** The accont's password */
password: string;
}) & {
/** The client's handling settings.
* @default { arr: 0, cancel: false, das: 5, dcd: 0, safelock: false, may20g: true, sdf: 41, irs: "tap", ihs: "tap" }
*/
handling?: Game.Handling;
/** The client's user agent.
* @default "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36 Edg/123.0.0.0"
*/
userAgent?: string;
/** a cf_clearance Cloudflare turnstile token. */
turnstile?: string;
/** The Ribbon (websocket handler) config */
ribbon?: Partial<RibbonOptions>;
};
export interface ClientUser {
id: string;
username: string;
role: User.Role;
sessionID: string;
userAgent: string;
}