Skip to content

Commit ddef289

Browse files
committed
Remove one extractor per language assumption
1 parent 72b0f9f commit ddef289

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

src/codeql.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -239,12 +239,10 @@ export interface ResolveLanguagesOutput {
239239
[alias: string]: string;
240240
};
241241
extractors: {
242-
[language: string]: [
243-
{
244-
extractor_root: string;
245-
extractor_options?: any;
246-
},
247-
];
242+
[language: string]: Array<{
243+
extractor_root: string;
244+
extractor_options?: any;
245+
}>;
248246
};
249247
}
250248

0 commit comments

Comments
 (0)