Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
@@ -0,0 +1,27 @@
/**
* Data contract for service version details.
*/
export interface ServiceVersionDetails {
/**
* Gets or sets the version of the service. E.g. "1.0.6615.53976". The version
* corresponds to the build number.
*/
version?: string;
/**
* Gets or sets the commit ID of the service.
*/
commitId?: string;
/**
* Gets or sets the commit date of the service.
*/
commitDate?: string;
/**
* Gets or sets the cluster ID of the service that handled the request.
*/
clusterId?: string;
/**
* Gets or sets the Azure location of the service that handled the request.
*/
azureLocation?: string;
}
//# sourceMappingURL=serviceVersionDetails.d.ts.map