Sporades SDK API
    Preparing search index...

    Type Alias SolidMutationState<Result>

    SolidJS mutation state follows the latest invocation while loading covers every pending call.

    type SolidMutationState<Result = unknown> = {
        data: Result | null;
        error: SporadesError | null;
        loading: boolean;
    }

    Type Parameters

    • Result = unknown
    Index
    data: Result | null
    error: SporadesError | null
    loading: boolean