/** This authentication provider does not perform any authentication. */ export class AnonymousAuthenticationProvider { constructor() { this.authenticateRequest = (_, _2) => { return Promise.resolve(); }; } } //# sourceMappingURL=anonymousAuthenticationProvider.js.map