frost-api
Version:
A wrapper for Rust Console Edition (RCE) that allows you to use the websocket and API from G-Portal.
10 lines (9 loc) • 392 B
TypeScript
import type { CommandRequest } from "./interfaces";
export default class CommandHandler {
private static commands;
static destroy(): void;
static add(command: CommandRequest): void;
static remove(command: CommandRequest): void;
static get(identifier: string, command: string): CommandRequest;
static getQueued(identifier: string, timestamp: string): CommandRequest;
}