We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
FixedSizeBlobCopyJob
1 parent 1ed2deb commit 3499285Copy full SHA for 3499285
1 file changed
typings/internalBinding/blob.d.ts
@@ -2,17 +2,10 @@ declare namespace InternalBlobBinding {
2
interface BlobHandle {
3
slice(start: number, end: number): BlobHandle;
4
}
5
-
6
- class FixedSizeBlobCopyJob {
7
- constructor(handle: BlobHandle);
8
- run(): ArrayBuffer | undefined;
9
- ondone: (err: unknown, res?: ArrayBuffer) => void;
10
- }
11
12
13
export interface BlobBinding {
14
createBlob(sources: Array<Uint8Array | InternalBlobBinding.BlobHandle>, length: number): InternalBlobBinding.BlobHandle;
15
- FixedSizeBlobCopyJob: typeof InternalBlobBinding.FixedSizeBlobCopyJob;
16
getDataObject(id: string): [handle: InternalBlobBinding.BlobHandle | undefined, length: number, type: string] | undefined;
17
storeDataObject(id: string, handle: InternalBlobBinding.BlobHandle, size: number, type: string): void;
18
0 commit comments