Skip to content

Commit

Permalink
chore: resolve false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
almeidx committed Feb 23, 2024
1 parent bd2d9da commit 7f4204b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/discord.js/typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3352,7 +3352,8 @@ export function makeError(obj: MakeErrorOptions): Error;
export function makePlainError(err: Error): MakeErrorOptions;
/** @internal */
export function moveElementInArray(
array: readonly unknown[],
// eslint-disable-next-line no-restricted-syntax
array: unknown[],
element: unknown,
newIndex: number,
offset?: boolean,
Expand Down Expand Up @@ -6766,7 +6767,7 @@ export interface WebhookMessageCreateOptions extends Omit<MessageCreateOptions,
avatarURL?: string;
threadId?: Snowflake;
threadName?: string;
appliedTags?: Snowflake[];
appliedTags?: readonly Snowflake[];
}

export interface WebSocketOptions {
Expand Down

0 comments on commit 7f4204b

Please sign in to comment.