interface LinkRelations<Ref, L> {
    _applies: string[];
    _namespaces: string[];
    from: L;
    in: L[];
    inByType: {
        [id: string]: L[];
    };
    ml?: MinilinkCollection<MinilinksGeneratorOptions, L>;
    out: L[];
    outByType: {
        [id: string]: L[];
    };
    to: L;
    type: L;
    typed: L[];
    value?: any;
}

Type Parameters

Hierarchy (view full)

Properties

_applies: string[]
_namespaces: string[]
from: L
in: L[]
inByType: {
    [id: string]: L[];
}
out: L[]
outByType: {
    [id: string]: L[];
}
to: L
type: L
typed: L[]
value?: any