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

12 lines
157 B
TypeScript
Raw Normal View History

export interface ToCEntry {
id: string;
label: string;
subEntries: ToCEntry[];
2021-02-04 09:33:03 +01:00
type: ToCEntryType;
}
2021-02-04 09:33:03 +01:00
export enum ToCEntryType{
Page =0,
Section = 1
}