Update OS representation

This commit is contained in:
Michael B. Gale
2023-05-23 09:43:23 +01:00
parent 4322324628
commit 360d2b76b5
2 changed files with 10 additions and 3 deletions

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[];
}