Sporades SDK API
    Preparing search index...

    Type Alias SporadesLitControllers

    Lit reactive-controller factories over the shared framework-neutral client connection.

    type SporadesLitControllers = {
        authController(host: LitReactiveControllerHost): LitAuthController;
        mutationController<Result = unknown>(
            host: LitReactiveControllerHost,
            name: string,
        ): LitMutationController<Result>;
        queryController<Data = unknown>(
            host: LitReactiveControllerHost,
            name: string,
        ): LitQueryController<Data>;
    }
    Index