Skip to content

Commit

Permalink
Update OS representation
Browse files Browse the repository at this point in the history
  • Loading branch information
mbg committed May 23, 2023
1 parent ccd7973 commit 153ab84
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/codeql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -235,11 +235,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[];
}
Expand Down

0 comments on commit 153ab84

Please sign in to comment.