Edit

Share via


NodeSystemOptions type

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 NodeSystemOptions = {
  customAgentOptions?: http.AgentOptions | https.AgentOptions
  disableInternalRetries?: boolean
  loggerOptions?: LoggerOptions
  networkClient?: INetworkModule
  proxyUrl?: string
}