Preparing search index...
    interface IUPathMetaStore<
        M extends IUPathMeta = IUPathMeta,
        A extends IUPathAttribute = IUPathAttribute,
    > {
        getAllMetaAttributes(): Map<string, A>;
        getMetaAttribute(path: string): null | A;
        getMetaEntity(): M;
    }

    Type Parameters

    Implemented by

    Index

    Methods

    • Returns Map<string, A>

    • Parameters

      • path: string

      Returns null | A

    • Returns M