AAI SDK
    Preparing search index...

    Interface ProviderDescriptor<Kind, Options>

    Base shape for a provider descriptor. A kind tag + opaque options payload lets the host registry pick the right resolver and pass the caller's options through verbatim.

    interface ProviderDescriptor<Kind extends string, Options> {
        kind: Kind;
        options: Options;
    }

    Type Parameters

    • Kind extends string
    • Options
    Index
    kind: Kind
    options: Options