9 lines
358 B
TypeScript
9 lines
358 B
TypeScript
/**
|
|
* 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;
|
|
};
|
|
//# sourceMappingURL=InitializeApplicationRequest.d.ts.map
|