mirror of
https://github.com/withfig/autocomplete.git
synced 2025-12-13 20:36:48 +01:00
fix(ssh): fix implicit any error (#2581)
This commit is contained in:
@@ -43,7 +43,7 @@ const getConfigLines = async (
|
||||
.map((line) => line.split(" ")[1]);
|
||||
|
||||
// Get the lines of every include file
|
||||
const includeLines = await Promise.all(
|
||||
const includeLines: string[][] = await Promise.all(
|
||||
includes.map((file) =>
|
||||
getConfigLines(file, executeShellCommand, home, basePath)
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user