File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -215,13 +215,14 @@ export type ArenaMediaBlock = ArenaBaseBlock & {
215
215
export type ArenaAttachmentBlock = ArenaBaseBlock & {
216
216
/** (String) The type of block. Will always be "Attachment" */
217
217
class : 'Attachment' ;
218
- }
218
+ } ;
219
219
220
- export type ArenaBlock = ArenaBaseBlock
221
- | ArenaImageBlock
222
- | ArenaTextBlock
223
- | ArenaLinkBlock
224
- | ArenaMediaBlock
220
+ export type ArenaBlock =
221
+ | ArenaBaseBlock
222
+ | ArenaImageBlock
223
+ | ArenaTextBlock
224
+ | ArenaLinkBlock
225
+ | ArenaMediaBlock
225
226
| ArenaAttachmentBlock ;
226
227
227
228
export type ArenaCommentEntity = {
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ export class ArenaClient implements ArenaApi {
173
173
'Content-Type' : 'application/json' ,
174
174
Authorization : config ?. token ? `Bearer ${ config . token } ` : '' ,
175
175
} ;
176
- this . fetch = config ?. fetch || fetch ;
176
+ this . fetch = config ?. fetch || fetch ;
177
177
this . date = config ?. date || Date ;
178
178
}
179
179
You can’t perform that action at this time.
0 commit comments