botbook/node_modules/@azure/msal-node/dist/network/ILoopbackClient.d.ts
Rodrigo Rodriguez 6ae15fe3e5 Updated.
2024-09-04 13:13:15 -03:00

11 lines
No EOL
461 B
TypeScript

import { ServerAuthorizationCodeResponse } from "@azure/msal-common";
/**
* 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