The options for the client.
Readonly channelsThe manager of channels that belong to the client.
Readonly groupsThe manager of groups that belong to the client.
The options for the client.
Readonly restThe REST manager for the Guilded API.
Readonly serversThe manager of servers that belong to the client.
Optional tokenThe auth token for the Guilded API.
Optional userThe user the client is logged in as.
Readonly usersThe manager of users that belong to the client.
Readonly wsThe Websocket manager for the Guilded API.
Whether the client is ready to use.
The date the client was ready.
The timestamp the client was ready.
The time the client has been in the ready state.
The main hub for interacting with the Guilded API.
Example
const client = new Client(); client.once('ready', () => console.log(
Logged in as ${client.user!.name}!)); client.login('token');