mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 01:10:07 +00:00
add: ListActiveThreads
This commit is contained in:
11
src/types/channels/list_active_threads.ts
Normal file
11
src/types/channels/list_active_threads.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { ThreadMember } from "../messages/thread_member.ts";
|
||||
import { Channel } from "./channel.ts";
|
||||
|
||||
export interface ListActiveThreads {
|
||||
/** The active threads */
|
||||
threads: Channel[];
|
||||
/** A thread member object for each returned thread the current user has joined */
|
||||
members: ThreadMember[];
|
||||
/** Whether there are potentially additional threads that could be returned on subsequent call */
|
||||
hasMore: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user