ic-reactor
    Preparing search index...

    Class AgentManager

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    agentStore: types.AgentStore
    authStore: types.AuthStore
    getAgentState: () => types.AgentState = ...
    subscribeAgentState: {
        (
            listener: (
                selectedState: types.AgentState,
                previousSelectedState: types.AgentState,
            ) => void,
        ): () => void;
        <U>(
            selector: (state: types.AgentState) => U,
            listener: (selectedState: U, previousSelectedState: U) => void,
            options?: {
                equalityFn?: (a: U, b: U) => boolean;
                fireImmediately?: boolean;
            },
        ): () => void;
    } = ...
    getAuthState: () => types.AuthState = ...
    subscribeAuthState: {
        (
            listener: (
                selectedState: types.AuthState,
                previousSelectedState: types.AuthState,
            ) => void,
        ): () => void;
        <U>(
            selector: (state: types.AuthState) => U,
            listener: (selectedState: U, previousSelectedState: U) => void,
            options?: {
                equalityFn?: (a: U, b: U) => boolean;
                fireImmediately?: boolean;
            },
        ): () => void;
    } = ...

    Methods