We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 759411b commit ece92e4Copy full SHA for ece92e4
src/input/findOriginalConfigurations.ts
@@ -69,7 +69,7 @@ export const findOriginalConfigurations = async (
69
};
70
71
const configurationResultIsError = (
72
- result: readonly [{} | Error | undefined, string | undefined],
+ result: readonly [unknown, unknown],
73
): result is [Error, string] => {
74
return result[0] instanceof Error && typeof result[1] === "string";
75
0 commit comments