cletus/node_modules/@azure/msal-node/dist/network/ILoopbackClient.d.ts
2025-05-09 15:53:19 -05:00

11 lines
No EOL
466 B
TypeScript

import { ServerAuthorizationCodeResponse } from "@azure/msal-common/node";
/**
* Interface for LoopbackClient allowing to replace the default loopback server with a custom implementation.
* @public
*/
export interface ILoopbackClient {
listenForAuthCode(successTemplate?: string, errorTemplate?: string): Promise<ServerAuthorizationCodeResponse>;
getRedirectUri(): string;
closeServer(): void;
}
//# sourceMappingURL=ILoopbackClient.d.ts.map