Files
PayDirt/node_modules/@azure/msal-node/dist/network/ILoopbackClient.d.ts
RochesterX 6e820464d5 Initial
2025-11-12 10:13:24 -05:00

11 lines
428 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