Sporades SDK API
    Preparing search index...

    Type Alias SporadesInfernoAdapters

    Inferno-native lifecycle adapters over the shared framework-neutral client connection.

    type SporadesInfernoAdapters = {
        authAdapter(host: InfernoAdapterHost): InfernoAuthAdapter;
        mutationAdapter<Result = unknown>(
            host: InfernoAdapterHost,
            name: string,
        ): InfernoMutationAdapter<Result>;
        queryAdapter<Data = unknown>(
            host: InfernoAdapterHost,
            name: string,
        ): InfernoQueryAdapter<Data>;
    }
    Index