UNPKG

@giancosta86/omnicourse-core

Version:
13 lines 476 B
import { SortedSet } from "@rimbu/sorted"; import { Subject } from "./Subject"; import { Work } from "./Work"; export interface TaxonomyLevel { readonly name: string; readonly items: SortedSet.NonEmpty<Subject> | SortedSet.NonEmpty<Work>; readonly totalMinutes: number; readonly containsSubjects: boolean; } export declare namespace TaxonomyLevel { function isMeaningful(taxonomyLevel: TaxonomyLevel): boolean; } //# sourceMappingURL=TaxonomyLevel.d.ts.map