Skip to content

Commit 01809c0

Browse files
committed
style: lint
1 parent 92c977d commit 01809c0

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

src/lib/twitch/eventsub.ts

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,9 @@ export interface WarnMetadata extends WithBasicUser {
110110
chat_rules_cited: string[] | null;
111111
}
112112

113-
export interface AutoModTermsAction
114-
extends BaseAction<
115-
"add_blocked_term" | "add_permitted_term" | "remove_blocked_term" | "remove_permitted_term"
116-
> {
113+
export interface AutoModTermsAction extends BaseAction<
114+
"add_blocked_term" | "add_permitted_term" | "remove_blocked_term" | "remove_permitted_term"
115+
> {
117116
automod_terms: AutoModTermsMetadata;
118117
}
119118

@@ -155,8 +154,9 @@ export interface UnbanAction extends BaseAction<"unban"> {
155154
unban: WithBasicUser;
156155
}
157156

158-
export interface UnbanRequestAction
159-
extends BaseAction<"approve_unban_request" | "deny_unban_request"> {
157+
export interface UnbanRequestAction extends BaseAction<
158+
"approve_unban_request" | "deny_unban_request"
159+
> {
160160
unban_request: UnbanRequestMetadata;
161161
}
162162

@@ -298,9 +298,7 @@ export interface ChannelUnbanRequestCreate extends WithBroadcaster, WithBasicUse
298298
}
299299

300300
export interface ChannelUnbanRequestResolve
301-
extends WithBasicUser,
302-
WithBroadcaster,
303-
Nullable<WithModerator> {
301+
extends WithBasicUser, WithBroadcaster, Nullable<WithModerator> {
304302
id: string;
305303
resolution_text: string | null;
306304
status: "approved" | "denied" | "cancelled";

0 commit comments

Comments
 (0)