UNPKG

@azure/msal-browser

Version:
12 lines 498 B
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