fix(ssh): fix implicit any error (#2581)

This commit is contained in:
Daniel Imms
2025-03-07 15:47:40 -08:00
committed by GitHub
parent 3e120e709d
commit 5c9f321182

View File

@@ -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)
)