We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31ff357 commit f0ce52dCopy full SHA for f0ce52d
extensions/ql-vscode/scripts/source-map.ts
@@ -243,7 +243,7 @@ type WorkflowRunListItem = {
243
async function replaceAsync(
244
str: string,
245
regex: RegExp,
246
- replacer: (substring: string, ...args: any[]) => Promise<string>,
+ replacer: (substring: string, ...args: string[]) => Promise<string>,
247
) {
248
const promises: Array<Promise<string>> = [];
249
str.replace(regex, (match, ...args) => {
0 commit comments