forked from hazza/dspace-angular
16 lines
484 B
TypeScript
16 lines
484 B
TypeScript
import { SubmissionSectionError } from '../../objects/submission-objects.reducer';
|
|
import { WorkspaceitemSectionDataType } from '../../../core/submission/models/workspaceitem-sections.model';
|
|
import { SectionsType } from '../sections-type';
|
|
|
|
export interface SectionDataObject {
|
|
config: string;
|
|
data: WorkspaceitemSectionDataType;
|
|
errors: SubmissionSectionError[];
|
|
header: string;
|
|
id: string;
|
|
mandatory: boolean;
|
|
sectionType: SectionsType;
|
|
|
|
[propName: string]: any;
|
|
}
|