Convert status report comments to documentation

This commit is contained in:
Henry Mercer 2022-02-03 11:52:49 +00:00
parent ff33f031e8
commit a005206838
7 changed files with 64 additions and 61 deletions

View file

@ -122,11 +122,11 @@ async function uploadPayload(
}
export interface UploadStatusReport {
// Size in bytes of unzipped SARIF upload
/** Size in bytes of unzipped SARIF upload. */
raw_upload_size_bytes?: number;
// Size in bytes of actual SARIF upload
/** Size in bytes of actual SARIF upload. */
zipped_upload_size_bytes?: number;
// Number of results in the SARIF upload
/** Number of results in the SARIF upload. */
num_results_in_sarif?: number;
}