16583: Add "Intermediate" to collection type filters
[arvados-workbench2.git] / src / models / keep-manifest.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 export type KeepManifest = KeepManifestStream[];
6
7 export interface KeepManifestStream {
8     name: string;
9     locators: string[];
10     files: Array<KeepManifestStreamFile>;
11 }
12
13 export interface KeepManifestStreamFile {
14     name: string;
15     position: string;
16     size: number;
17 }