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