The options used to initialize a terminal manager.

interface IOptions {
    serverSettings?: ServerConnection.ISettings;
    standby?: Standby | (() => boolean | Standby);
}

Hierarchy (view full)

Properties

serverSettings?: ServerConnection.ISettings

The server settings for the manager.

standby?: Standby | (() => boolean | Standby)

When the manager stops polling the API. Defaults to when-hidden.

Type declaration

    • (): boolean | Standby
    • Returns boolean | Standby