guilded.ts
Version:
A powerful NPM module that allows you to easily interact with the Guilded API.
21 lines • 901 B
TypeScript
import { WSEvents } from 'guilded-api-typings';
import { Client } from '../../structures/Client';
/**
* Handle the ServerRolesUpdated event.
* @param client The client the Websocket belongs to.
* @param data The data of the event.
*/
export declare function rolesUpdated(client: Client, data: WSEvents['ServerRolesUpdated']): Promise<void>;
/**
* Handle the BotServerMembershipCreated event.
* @param client The client the Websocket belongs to.
* @param data The data of the event.
*/
export declare function botAdded(client: Client, data: WSEvents['BotServerMembershipCreated']): Promise<void>;
/**
* Handle the BotServerMembershipDeleted event.
* @param client The client the Websocket belongs to.
* @param data The data of the event.
*/
export declare function botRemoved(client: Client, data: WSEvents['BotServerMembershipDeleted']): Promise<void>;
//# sourceMappingURL=server.d.ts.map