diff --git a/packages/rest-api-client/types/global/index.d.ts b/packages/rest-api-client/types/global/index.d.ts index 6419c74715..93b877efb0 100644 --- a/packages/rest-api-client/types/global/index.d.ts +++ b/packages/rest-api-client/types/global/index.d.ts @@ -25,6 +25,12 @@ declare const location: } | undefined; +declare class Blob { + constructor(array: unknown[]); +} + +declare type BlobPart = unknown; + declare const PACKAGE_VERSION: string; // see https://github.com/DefinitelyTyped/DefinitelyTyped/issues/24419