mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 20:51:42 +03:00
13 lines
511 B
TypeScript
13 lines
511 B
TypeScript
|
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/helpers/discovery/valid_discovery_term.ts
|
||
|
|
||
|
|
||
|
import { rest } from "../../rest/rest.ts";
|
||
|
import type { ValidateDiscoverySearchTerm } from "../../types/discovery/validate_discovery_search_term.ts";
|
||
|
import { endpoints } from "../../util/constants.ts";
|
||
|
|
||
|
export async function validDiscoveryTerm(term: string) {
|
||
|
const result = await rest.runMethod<ValidateDiscoverySearchTerm>("get", endpoints.DISCOVERY_VALID_TERM, { term });
|
||
|
|
||
|
return result.valid;
|
||
|
}
|