Interface ActorMethodState<A, M>

interface ActorMethodState<A, M> {
    [key: string]: {
        data: types.ActorMethodReturnType<A[M]> | undefined;
        loading: boolean;
        error: Error | undefined;
    };
}

Type Parameters

Indexable

[key: string]: {
    data: types.ActorMethodReturnType<A[M]> | undefined;
    loading: boolean;
    error: Error | undefined;
}