arc-agents
Version:
A library for creating and deploying gaming agents at scale
13 lines (10 loc) • 406 B
TypeScript
export declare class AgentVars {
/** Static game ID associated with the agent. */
static gameId: string;
/** Static API key used for authentication in requests. */
static apiKey: string;
/** Static authorization token used for API requests. */
static authorization: string;
/** Static backend url used to send network requests to the ARC server */
static backend: string;
}