mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 10:10:17 +08:00
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
13 lines
453 B
TypeScript
13 lines
453 B
TypeScript
import { ZipUploadStream } from './zip';
|
|
export interface BlobUploadResponse {
|
|
/**
|
|
* The total reported upload size in bytes. Empty if the upload failed
|
|
*/
|
|
uploadSize?: number;
|
|
/**
|
|
* The SHA256 hash of the uploaded file. Empty if the upload failed
|
|
*/
|
|
sha256Hash?: string;
|
|
}
|
|
export declare function uploadZipToBlobStorage(authenticatedUploadURL: string, zipUploadStream: ZipUploadStream): Promise<BlobUploadResponse>;
|