Create collection-panel-files actions and reducer
[arvados-workbench2.git] / src / store / collection-panel / collection-panel-files / collection-panel-files-state.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 export type CollectionPanelFilesState = Array<CollectionPanelFile>;
6
7 export interface CollectionPanelFile {
8     parentId: string;
9     id: string;
10     name: string;
11     size: number;
12     collapsed: boolean;
13     selected: boolean;
14     type: string;
15 }