Skip to content

Commit

Permalink
chore(rest-api-client): add type definition of Blob and BlobPart
Browse files Browse the repository at this point in the history
  • Loading branch information
tasshi-me committed May 19, 2022
1 parent cae1204 commit 992d8d2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/rest-api-client/types/global/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ declare const location:
}
| undefined;

declare type BlobPart = unknown;

declare class Blob {
constructor(array: BlobPart[]);
}

declare const PACKAGE_VERSION: string;

// see https://github.com/DefinitelyTyped/DefinitelyTyped/issues/24419
Expand Down

0 comments on commit 992d8d2

Please sign in to comment.