Skip to content

Commit 06fb007

Browse files
dario-piotrowicznodejs-github-bot
authored andcommitted
typings: remove no longer valid FixedSizeBlobCopyJob type
PR-URL: #58305 Reviewed-By: Yagiz Nizipli <[email protected]> Reviewed-By: Chengzhong Wu <[email protected]>
1 parent d824a92 commit 06fb007

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

typings/internalBinding/blob.d.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,10 @@ declare namespace InternalBlobBinding {
22
interface BlobHandle {
33
slice(start: number, end: number): BlobHandle;
44
}
5-
6-
class FixedSizeBlobCopyJob {
7-
constructor(handle: BlobHandle);
8-
run(): ArrayBuffer | undefined;
9-
ondone: (err: unknown, res?: ArrayBuffer) => void;
10-
}
115
}
126

137
export interface BlobBinding {
148
createBlob(sources: Array<Uint8Array | InternalBlobBinding.BlobHandle>, length: number): InternalBlobBinding.BlobHandle;
15-
FixedSizeBlobCopyJob: typeof InternalBlobBinding.FixedSizeBlobCopyJob;
169
getDataObject(id: string): [handle: InternalBlobBinding.BlobHandle | undefined, length: number, type: string] | undefined;
1710
storeDataObject(id: string, handle: InternalBlobBinding.BlobHandle, size: number, type: string): void;
1811
}

0 commit comments

Comments
 (0)