File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed
Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff 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
300300export 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" ;
You can’t perform that action at this time.
0 commit comments