Files
discordeno/src/helpers/channels/threads/unarchive_thread.ts
T
2021-06-18 00:02:54 +00:00

6 lines
204 B
TypeScript

import { editChannel } from "../edit_channel.ts";
/** Sets a thread channel to be unarchived. */
export function unarchiveThread(threadId: bigint) {
return editChannel(threadId, { archived: false });
}