mirror of
https://github.com/discordjs/discord-api-types.git
synced 2026-05-31 07:50:09 +00:00
fix(APIAuditLogEntry): user_id is not nullable (#52)
This commit is contained in:
@@ -31,7 +31,7 @@ export interface APIAuditLog {
|
||||
export interface APIAuditLogEntry {
|
||||
target_id: string | null;
|
||||
changes?: APIAuditLogChange[];
|
||||
user_id: string | null;
|
||||
user_id: string;
|
||||
id: string;
|
||||
action_type: AuditLogEvent;
|
||||
options?: APIAuditLogOptions;
|
||||
|
||||
Reference in New Issue
Block a user