We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5e07eb commit 008b006Copy full SHA for 008b006
1 file changed
src/codeql.ts
@@ -14,6 +14,27 @@ import * as api from './api-client';
14
import * as defaults from './defaults.json'; // Referenced from codeql-action-sync-tool!
15
import * as util from './util';
16
17
+type Options = (string|number|boolean)[];
18
+
19
+/**
20
+ * Extra command line options for the codeql commands.
21
+ */
22
+interface ExtraOptions {
23
+ '*'?: Options;
24
+ database?: {
25
+ '*'?: Options,
26
+ init?: Options,
27
+ 'trace-command'?: Options,
28
+ analyze?: Options,
29
+ finalize?: Options
30
+ };
31
+ resolve?: {
32
33
+ extractor?: Options,
34
+ queries?: Options
35
36
+}
37
38
export interface CodeQL {
39
/**
40
* Get the directory where the CodeQL executable is located.
0 commit comments