UNPKG

@azure/msal-browser

Version:
13 lines 533 B
import { TokenRequest } from "./TokenRequest.js"; export type BridgeMethods = "GetToken" | "GetInitContext" | "GetTokenPopup"; export type BridgeRequestEnvelope = { messageType: "NestedAppAuthRequest"; method: BridgeMethods; sendTime?: number; clientLibrary?: string; clientLibraryVersion?: string; requestId: string; tokenParams?: TokenRequest; }; export declare function isBridgeRequestEnvelope(obj: unknown): obj is BridgeRequestEnvelope; //# sourceMappingURL=BridgeRequestEnvelope.d.ts.map