fix(ThreadChannel): Handle possibly null parent (v13)

#8467 djs v13.10
This commit is contained in:
March 7th
2022-08-11 09:57:15 +07:00
parent 19fc481496
commit c6f5550c6e
2 changed files with 5 additions and 4 deletions

2
typings/index.d.ts vendored
View File

@@ -2852,7 +2852,7 @@ export class ThreadChannel extends TextBasedChannelMixin(Channel, ['fetchWebhook
checkAdmin?: boolean,
): Readonly<Permissions> | null;
public fetchOwner(options?: BaseFetchOptions): Promise<ThreadMember | null>;
public fetchStarterMessage(options?: BaseFetchOptions): Promise<Message>;
public fetchStarterMessage(options?: BaseFetchOptions): Promise<Message | null>;
public setArchived(archived?: boolean, reason?: string): Promise<ThreadChannel>;
public setAutoArchiveDuration(
autoArchiveDuration: ThreadAutoArchiveDuration | 'MAX',