14 lines
396 B
TypeScript
14 lines
396 B
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;
|
|
};
|