hoodkit
    Preparing search index...

    Interface AsyncState<T>

    Shared async-state shape returned by the read hooks.

    interface AsyncState<T> {
        data: T | null;
        error: Error | null;
        isLoading: boolean;
    }

    Type Parameters

    • T
    Index
    data: T | null
    error: Error | null
    isLoading: boolean