UNPKG

dressed

Version:

A sleek, serverless-ready Discord bot framework.

11 lines (10 loc) 483 B
import type { RESTGetCurrentApplicationResult, RESTPatchCurrentApplicationJSONBody, RESTPatchCurrentApplicationResult } from "discord-api-types/v10"; /** * Get the current bot application. */ export declare function getApp(): Promise<RESTGetCurrentApplicationResult>; /** * Update the current bot application. * @param data New data for the application */ export declare function modifyApp(data: RESTPatchCurrentApplicationJSONBody): Promise<RESTPatchCurrentApplicationResult>;