argos/dmp-frontend/src/app/ui/admin/dataset-profile/table-of-contents/table-of-contents-entry.ts

12 lines
157 B
TypeScript

export interface ToCEntry {
id: string;
label: string;
subEntries: ToCEntry[];
type: ToCEntryType;
}
export enum ToCEntryType{
Page =0,
Section = 1
}