@microsoft/kiota-abstractions
Version:
Core abstractions for kiota generated libraries in TypeScript and JavaScript
13 lines • 820 B
TypeScript
/**
* -------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
* See License in the project root for license information.
* -------------------------------------------------------------------------------------------
*/
import { type RequestInformation } from "../requestInformation.js";
import { type AuthenticationProvider } from "./authenticationProvider.js";
/** This authentication provider does not perform any authentication. */
export declare class AnonymousAuthenticationProvider implements AuthenticationProvider {
authenticateRequest: (_: RequestInformation, _2?: Record<string, unknown>) => Promise<void>;
}
//# sourceMappingURL=anonymousAuthenticationProvider.d.ts.map