Type alias NodeSystemOptions

NodeSystemOptions: {
    customAgentOptions?: http.AgentOptions | https.AgentOptions;
    loggerOptions?: LoggerOptions;
    networkClient?: INetworkModule;
    proxyUrl?: string;
}

Type for configuring logger and http client options

  • logger - Used to initialize the Logger object; TODO: Expand on logger details or link to the documentation on logger
  • networkClient - Http client used for all http get and post calls. Defaults to using MSAL's default http client.

Type declaration

  • Optional customAgentOptions?: http.AgentOptions | https.AgentOptions
  • Optional loggerOptions?: LoggerOptions
  • Optional networkClient?: INetworkModule
  • Optional proxyUrl?: string

Generated using TypeDoc