Update OS representation
This commit is contained in:
parent
4322324628
commit
360d2b76b5
2 changed files with 10 additions and 3 deletions
File diff suppressed because one or more lines are too long
|
|
@ -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[];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue