mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-16 19:28:17 +00:00
6 lines
204 B
TypeScript
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 });
|
|
} |