fix(utils): add missing export of hash.ts (#914)

* fix(utils): add missing export of hash.ts

* Commit from GitHub Actions (Lint)

Co-authored-by: TriForMine <TriForMine@users.noreply.github.com>
This commit is contained in:
TriForMine
2021-05-08 09:18:23 +02:00
committed by GitHub
parent b6da492471
commit b4b4a9e666
2 changed files with 3 additions and 3 deletions
+2 -3
View File
@@ -66,9 +66,8 @@ export async function sendWebhook(
const result = await rest.runMethod<Message>( const result = await rest.runMethod<Message>(
"post", "post",
`${endpoints.WEBHOOK(webhookId, webhookToken)}?wait=${options.wait ?? false}${ `${endpoints.WEBHOOK(webhookId, webhookToken)}?wait=${options.wait ??
options.threadId ? `&thread_id=${options.threadId}` : "" false}${options.threadId ? `&thread_id=${options.threadId}` : ""}`,
}`,
{ {
...options, ...options,
allowed_mentions: options.allowedMentions, allowed_mentions: options.allowedMentions,
+1
View File
@@ -2,6 +2,7 @@ export * from "./bigint.ts";
export * from "./cache_members.ts"; export * from "./cache_members.ts";
export * from "./collection.ts"; export * from "./collection.ts";
export * from "./constants.ts"; export * from "./constants.ts";
export * from "./hash.ts";
export * from "./loop_object.ts"; export * from "./loop_object.ts";
export * from "./permissions.ts"; export * from "./permissions.ts";
export * from "./utils.ts"; export * from "./utils.ts";