fix(types): ScheduledEvent#creator_id is nullable (#2059)

This commit is contained in:
LTS20050703
2022-02-19 21:27:49 +07:00
committed by ITOH
parent 9a4a2909f5
commit 120fae0840

View File

@@ -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 */