data-cap
    Preparing search index...

    Interface ScanTarget

    One capability to scan a file's AST for usage of.

    interface ScanTarget {
        exportName: string;
        file: string;
        getterNames: readonly string[];
        mutatorNames: readonly string[];
        subscriptionNames: readonly string[];
    }
    Index
    exportName: string

    The binding name the capability is exported as.

    file: string

    Absolute path of the file declaring this capability.

    getterNames: readonly string[]

    Getter names declared on the capability.

    mutatorNames: readonly string[]

    Mutator names declared on the capability.

    subscriptionNames: readonly string[]

    Subscription names declared on the capability.