Update OS representation

This commit is contained in:
Michael B. Gale 2023-05-23 09:43:23 +01:00
parent 4322324628
commit 360d2b76b5
No known key found for this signature in database
GPG key ID: FF5E2765BD00628F
2 changed files with 10 additions and 3 deletions

File diff suppressed because one or more lines are too long

View file

@ -237,11 +237,18 @@ export interface ResolveQueriesOutput {
export interface ResolveBuildEnvironmentOutput {
configuration?: {
os?: string;
[language: string]: any;
[language: string]: {
os?: BuildEnvironmentOS;
[key: string]: unknown;
};
};
}
export interface BuildEnvironmentOS {
name?: string;
version?: string;
}
export interface PackDownloadOutput {
packs: PackDownloadItem[];
}