Skip to content

Commit 1b3de18

Browse files
committed
chore: remove unnecessary ts comment
1 parent eb1d9a7 commit 1b3de18

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

packages/blockstore-s3/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ export class S3Blockstore extends BaseBlockstore {
146146
return new Uint8Array(buf, 0, buf.byteLength)
147147
}
148148

149-
// @ts-expect-error s3 types define their own Blob as an empty interface
150149
return await toBuffer(data.Body)
151150
} catch (err: any) {
152151
if (err.statusCode === 404) {

packages/datastore-s3/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ export class S3Datastore extends BaseDatastore {
158158
return new Uint8Array(buf, 0, buf.byteLength)
159159
}
160160

161-
// @ts-expect-error s3 types define their own Blob as an empty interface
162161
return await toBuffer(data.Body)
163162
} catch (err: any) {
164163
if (err.statusCode === 404) {

0 commit comments

Comments
 (0)