swc/crates/swc_bundler/tests/.cache/deno/633b317f79b0cb5ac26c3dfdcc2d3a7d6474913d.ts
2021-11-09 20:42:49 +09:00

12 lines
457 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/helpers/templates/get_template.ts
import { rest } from "../../rest/rest.ts";
import type { Template } from "../../types/templates/template.ts";
import { endpoints } from "../../util/constants.ts";
/** Returns the guild template if it exists */
export async function getTemplate(templateCode: string) {
return await rest.runMethod<Template>("get", endpoints.GUILD_TEMPLATE(templateCode));
}