Skip to content

Commit

Permalink
Remove since annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
amattu2 committed Oct 18, 2024
1 parent 7c0bd21 commit 33120e9
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/types/Submissions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,22 +161,18 @@ type UploadType = "metadata" | "data file";
type Batch = {
_id: string;
displayID: number;
submissionID: string; // parent
submissionID: string;
type: UploadType;
fileCount: number; // calculated by BE
fileCount: number;
files: BatchFileInfo[];
status: BatchStatus;
errors: string[];
/**
* The ID of the user who created the batch
*
* @since 3.1.0
*/
submitterID?: string;
/**
* The name of the user who created the batch
*
* @since 3.1.0
*/
submitterName?: string;
createdAt: string; // ISO 8601 date time format with UTC or offset e.g., 2023-05-01T09:23:30Z
Expand Down

0 comments on commit 33120e9

Please sign in to comment.