Merge branch 'fp-attempt-9001' of https://github.com/discordeno/discordeno into fp-attempt-9001

This commit is contained in:
Skillz4Killz
2021-11-09 18:18:04 +00:00
committed by GitHub
parent 863157d920
commit 9cbd196bc9

View File

@@ -652,8 +652,8 @@ export interface Helpers {
leaveThread: typeof helpers.leaveThread;
lockThread: typeof helpers.lockThread;
removeThreadMember: typeof helpers.removeThreadMember;
startPrivateThread: typeof helpers.startPrivateThread;
startThread: typeof helpers.startThread;
startThreadWithoutMessage: typeof helpers.startThreadWithoutMessage;
startThreadWithMessage: typeof helpers.startThreadWithMessage;
unarchiveThread: typeof helpers.unarchiveThread;
unlockThread: typeof helpers.unlockThread;
suppressEmbeds: typeof helpers.suppressEmbeds;
@@ -827,8 +827,8 @@ export function createBaseHelpers(options: Partial<Helpers>) {
leaveThread: options.leaveThread || helpers.leaveThread,
lockThread: options.lockThread || helpers.lockThread,
removeThreadMember: options.removeThreadMember || helpers.removeThreadMember,
startPrivateThread: options.startPrivateThread || helpers.startPrivateThread,
startThread: options.startThread || helpers.startThread,
startThreadWithoutMessage: options.startThreadWithoutMessage || helpers.startThreadWithoutMessage,
startThreadWithMessage: options.startThreadWithMessage || helpers.startThreadWithMessage,
unarchiveThread: options.unarchiveThread || helpers.unarchiveThread,
unlockThread: options.unlockThread || helpers.unlockThread,
suppressEmbeds: options.suppressEmbeds || helpers.suppressEmbeds,