diff --git a/packages/discord.js/typings/index.d.ts b/packages/discord.js/typings/index.d.ts index 3b72e64dd63b..08305031c2ed 100644 --- a/packages/discord.js/typings/index.d.ts +++ b/packages/discord.js/typings/index.d.ts @@ -3171,7 +3171,7 @@ export class UserContextMenuCommandInteraction< > extends ContextMenuCommandInteraction { public commandType: ApplicationCommandType.User; public get targetUser(): User; - public get targetMember(): CacheTypeReducer; + public get targetMember(): CacheTypeReducer | null; public inGuild(): this is UserContextMenuCommandInteraction<'raw' | 'cached'>; public inCachedGuild(): this is UserContextMenuCommandInteraction<'cached'>; public inRawGuild(): this is UserContextMenuCommandInteraction<'raw'>;