@azure/msal-browser
Version:
Microsoft Authentication Library for js
14 lines (12 loc) • 396 B
text/typescript
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* InitializeApplicationRequest: Request object passed by user to initialize application
*
* - correlationId - Unique GUID set per request to trace a request end-to-end for telemetry purposes.
*/
export type InitializeApplicationRequest = {
correlationId?: string;
};