NeuraLegion/sectester-js

View on GitHub
packages/repeater/src/request-runner/RequestRunnerOptions.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export interface RequestRunnerOptions {
  timeout?: number;
  proxyUrl?: string;
  headers?: Record<string, string | string[]>;
  allowedMimes?: string[];
  maxContentLength?: number;
  reuseConnection?: boolean;
}

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