constructor()

in src/client.ts [94:100]


  constructor(config: Config | null = null, provider: CredentialsProvider | { [key: string]: any } | null = null) {
    if (isCredentialsProviderClass(provider)) {
      this.load(null, provider as CredentialsProvider);
    } else {
      this.load(config, null);
    }
  }