data-cap
    Preparing search index...

    Interface WithCapability<T>

    One node plus the capability it belongs to.

    interface WithCapability<T> {
        capability: { exportName: string; file: string };
        node: T;
    }

    Type Parameters

    • T
    Index
    capability: { exportName: string; file: string }

    The capability this node belongs to.

    node: T

    The node itself.