@azure/msal-browser
Version:
Microsoft Authentication Library for js
18 lines (15 loc) • 542 B
text/typescript
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
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>;
}