mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-16 19:28:17 +00:00
7 lines
201 B
TypeScript
7 lines
201 B
TypeScript
import { editThread } from "./edit_thread.ts";
|
|
|
|
/** Sets a thread channel to be unarchived. */
|
|
export function unarchiveThread(threadId: bigint) {
|
|
return editThread(threadId, { archived: false });
|
|
}
|