UNPKG

guilded.ts

Version:

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

33 lines 1.33 kB
import { WSEvents } from 'guilded-api-typings'; import { Client } from '../../structures/Client'; /** * Handle the ListItemCreated event. * @param client The client the Websocket belongs to. * @param data The data of the event. */ export declare function created(client: Client, data: WSEvents['ListItemCreated']): Promise<void>; /** * Handle the ListItemUpdated event. * @param client The client the Websocket belongs to. * @param data The data of the event. */ export declare function updated(client: Client, data: WSEvents['ListItemUpdated']): Promise<void>; /** * Handle the ListItemDeleted event. * @param client The client the Websocket belongs to. * @param data The data of the event. */ export declare function deleted(client: Client, data: WSEvents['ListItemDeleted']): Promise<void>; /** * Handle the ListItemCompleted event. * @param client The client the Websocket belongs to. * @param data The data of the event. */ export declare function completed(client: Client, data: WSEvents['ListItemCompleted']): Promise<void>; /** * Handle the ListItemUncompleted event. * @param client The client the Websocket belongs to. * @param data The data of the event. */ export declare function uncompleted(client: Client, data: WSEvents['ListItemUncompleted']): Promise<void>; //# sourceMappingURL=listItem.d.ts.map