From 120fae0840bcfcf5f4e87fd0c2099120cc0a3fb6 Mon Sep 17 00:00:00 2001 From: LTS20050703 <87189679+lts20050703@users.noreply.github.com> Date: Sat, 19 Feb 2022 21:27:49 +0700 Subject: [PATCH] fix(types): `ScheduledEvent#creator_id` is nullable (#2059) --- types/guilds/scheduledEvents.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/guilds/scheduledEvents.ts b/types/guilds/scheduledEvents.ts index b807266ae..b2e3e0f89 100644 --- a/types/guilds/scheduledEvents.ts +++ b/types/guilds/scheduledEvents.ts @@ -8,7 +8,7 @@ export interface ScheduledEvent { /** the channel id in which the scheduled event will be hosted if specified */ channelId: string | null; /** the id of the user that created the scheduled event */ - creatorId?: string; + creatorId?: string | null; /** the name of the scheduled event */ name: string; /** the description of the scheduled event */