UNPKG

guilded.ts

Version:

A powerful NPM module that allows you to easily interact with the Guilded API.

21 lines 809 B
import { WSEvents } from 'guilded-api-typings'; import { Client } from '../../structures/Client'; /** * Handle the DocCreated event. * @param client The client the Websocket belongs to. * @param data The data of the event. */ export declare function created(client: Client, data: WSEvents['DocCreated']): Promise<void>; /** * Handle the DocUpdated event. * @param client The client the Websocket belongs to. * @param data The data of the event. */ export declare function updated(client: Client, data: WSEvents['DocUpdated']): Promise<void>; /** * Handle the DocDeleted event. * @param client The client the Websocket belongs to. * @param data The data of the event. */ export declare function deleted(client: Client, data: WSEvents['DocDeleted']): Promise<void>; //# sourceMappingURL=doc.d.ts.map