@azure/msal-node
Version:
Microsoft Authentication Library for Node
11 lines • 438 B
TypeScript
import { AuthorizeResponse } 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<AuthorizeResponse>;
getRedirectUri(): string;
closeServer(): void;
}
//# sourceMappingURL=ILoopbackClient.d.ts.map