projects
/
arvados-workbench2.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch 'master'
[arvados-workbench2.git]
/
src
/
views-components
/
data-explorer
/
data-item.ts
1
// Copyright (C) The Arvados Authors. All rights reserved.
2
//
3
// SPDX-License-Identifier: AGPL-3.0
4
5
export interface DataItem {
6
uuid: string;
7
name: string;
8
type: string;
9
owner: string;
10
lastModified: string;
11
fileSize?: number;
12
status?: string;
13
}