NeuraLegion/sectester-js

View on GitHub
packages/bus/src/dispatchers/HttpCommandDispatcherConfig.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export interface HttpCommandDispatcherConfig {
  baseUrl: string;
  token: string;
  timeout?: number;
  maxSockets?: number;
  keepAlive?: boolean;
  rate?: {
    window: number;
    limit: number;
  };
}

export const HttpCommandDispatcherConfig: unique symbol = Symbol(
  'HttpCommandDispatcherConfig'
);