Files
discordeno/src/helpers/oauth/get_application.ts
T
2021-07-09 14:58:11 +00:00

9 lines
344 B
TypeScript

import { rest } from "../../rest/rest.ts";
import { endpoints } from "../../util/constants.ts";
import { Application } from "../../types/applications/application.ts";
/** Get the applications info */
export async function getApplicationInfo() {
return await rest.runMethod<Omit<Application, "flags">>("get", endpoints.OAUTH2_APPLICATION);
}