feat: allows to create a group without user

This commit is contained in:
Elysia
2024-07-28 16:39:16 +07:00
parent 78977df08b
commit 772739f980
2 changed files with 6 additions and 5 deletions

2
typings/index.d.ts vendored
View File

@@ -3997,7 +3997,7 @@ export class BaseGuildEmojiManager extends CachedManager<Snowflake, GuildEmoji,
export class ChannelManager extends CachedManager<Snowflake, AnyChannel, ChannelResolvable> {
private constructor(client: Client, iterable: Iterable<RawChannelData>);
public fetch(id: Snowflake, options?: FetchChannelOptions): Promise<AnyChannel | null>;
public createGroupDM(recipients: UserResolvable[]): Promise<GroupDMChannel>;
public createGroupDM(recipients?: UserResolvable[]): Promise<GroupDMChannel>;
}
export class RelationshipManager extends BaseManager {