71806: Curation tasks UI

This commit is contained in:
Yana De Pauw
2020-07-16 11:42:11 +02:00
parent 9d3f58770a
commit 2162153ae9
22 changed files with 620 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
import { Config } from './config.interface';
/**
* An interface to represent a curation task in the configuration. A CurationTask has a name and a label.
*/
export interface CurationTask extends Config {
name: string;
label: string;
}