Files
PayDirt/node_modules/@azure/msal-browser/dist/broker/nativeBroker/IPlatformAuthHandler.d.ts
RochesterX 6e820464d5 Initial
2025-11-12 10:13:24 -05:00

12 lines
487 B
TypeScript

import { PlatformAuthRequest } from "./PlatformAuthRequest.js";
import { PlatformAuthResponse } from "./PlatformAuthResponse.js";
/**
* Interface for the Platform Broker Handlers
*/
export interface IPlatformAuthHandler {
getExtensionId(): string | undefined;
getExtensionVersion(): string | undefined;
getExtensionName(): string | undefined;
sendMessage(request: PlatformAuthRequest): Promise<PlatformAuthResponse>;
}
//# sourceMappingURL=IPlatformAuthHandler.d.ts.map