Interface ResolvedDocument

interface ResolvedDocument {
    doc: ModDefDocument;
    enums: Map<string, EnumType>;
    imports: Map<string, ModDefDocument>;
    measurands: Map<string, MeasurandDefinition>;
}

Properties

enums: Map<string, EnumType>

enums visible to the document: local first, then imported.

imports: Map<string, ModDefDocument>

imported documents keyed by uri.

measurands: Map<string, MeasurandDefinition>

measurand definitions visible to the document.