Skip to content

Commit f0ce52d

Browse files
Remove use of any in scripts/source-map.ts
1 parent 31ff357 commit f0ce52d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/scripts/source-map.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ type WorkflowRunListItem = {
243243
async function replaceAsync(
244244
str: string,
245245
regex: RegExp,
246-
replacer: (substring: string, ...args: any[]) => Promise<string>,
246+
replacer: (substring: string, ...args: string[]) => Promise<string>,
247247
) {
248248
const promises: Array<Promise<string>> = [];
249249
str.replace(regex, (match, ...args) => {

0 commit comments

Comments
 (0)