Skip to content

Commit ece92e4

Browse files
author
Josh Goldberg
authored
Removed unnecessary type info from fancy configuratino filter typings (#128)
1 parent 759411b commit ece92e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/input/findOriginalConfigurations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export const findOriginalConfigurations = async (
6969
};
7070

7171
const configurationResultIsError = (
72-
result: readonly [{} | Error | undefined, string | undefined],
72+
result: readonly [unknown, unknown],
7373
): result is [Error, string] => {
7474
return result[0] instanceof Error && typeof result[1] === "string";
7575
};

0 commit comments

Comments
 (0)