Interface UseActorManagerParameters<A>

interface UseActorManagerParameters<A> {
    name?: string;
    withVisitor?: boolean;
    withDevtools?: boolean;
    initializeOnCreate?: boolean;
    actorManager: types.ActorManager<A>;
}

Type Parameters

  • A

Hierarchy (view full)

Properties

name?: string
withVisitor?: boolean
withDevtools?: boolean
initializeOnCreate?: boolean
actorManager: types.ActorManager<A>