They're all optionals now

This commit is contained in:
Manav Rathi 2024-05-01 15:00:18 +05:30
parent cb73bc143d
commit 36984012a8
No known key found for this signature in database

View file

@ -9,15 +9,10 @@ export interface UploadStatusStore {
collectionName?: string;
/**
* Paths to regular files that are pending upload.
*
* This should generally be present, albeit empty, but it is marked optional
* in sympathy with its siblings.
*/
filePaths?: string[];
/**
* Each item is the path to a zip file and the name of an entry within it.
*
* This is marked optional since legacy stores will not have it.
*/
zipItems?: [zipPath: string, entryName: string][];
/**