File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
extensions/ql-vscode/src/query-server Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ export class QueryRunner {
130130 query : CoreQueryTarget ,
131131 additionalPacks : string [ ] ,
132132 extensionPacks : string [ ] | undefined ,
133- additionalRunQueryArgs : Record < string , any > ,
133+ additionalRunQueryArgs : Record < string , unknown > ,
134134 generateEvalLog : boolean ,
135135 outputDir : QueryOutputDir ,
136136 progress : ProgressCallback ,
@@ -216,7 +216,7 @@ export class QueryRunner {
216216 generateEvalLog : boolean ,
217217 additionalPacks : string [ ] ,
218218 extensionPacks : string [ ] | undefined ,
219- additionalRunQueryArgs : Record < string , any > ,
219+ additionalRunQueryArgs : Record < string , unknown > ,
220220 queryStorageDir : string ,
221221 id = `${ basename ( query . queryPath ) } -${ nanoid ( ) } ` ,
222222 templates : Record < string , string > | undefined ,
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export async function compileAndRunQueryAgainstDatabaseCore(
2828 generateEvalLog : boolean ,
2929 additionalPacks : string [ ] ,
3030 extensionPacks : string [ ] | undefined ,
31- additionalRunQueryArgs : Record < string , any > ,
31+ additionalRunQueryArgs : Record < string , unknown > ,
3232 outputDir : QueryOutputDir ,
3333 progress : ProgressCallback ,
3434 token : CancellationToken ,
You can’t perform that action at this time.
0 commit comments