Skip to content

Type Alias: RelayConfig

Makaio Framework


Makaio Framework / contracts / RelayConfig

RelayConfig = NonNullable<Config["relay"]>

Defined in: ../../../packages/contracts/src/config/config-schema.ts:146

Relay connection configuration type, derived from the bootstrap config schema.

  • RelayConfig
    • NonNullable<Config['relay']>
      • Config['relay']
type RelayConfig = {
autoReconnect: boolean;
maxReconnectAttempts: number;
heartbeatInterval: number;
url?: string | undefined;
token?: string | undefined;
};