Skip to content

Commit ae3a424

Browse files
Made optional and used unknown
1 parent 6ce2c8b commit ae3a424

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/input/findReportedConfiguration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Exec } from "../adapters/exec";
22

33
export type DeepPartial<T> = {
4-
[P in keyof T]?: T[P] extends Record<P, T[P]> ? DeepPartial<T[P]> : T[P];
4+
[P in keyof T]: T[P] extends Record<P, unknown> ? DeepPartial<T[P]> : T[P];
55
};
66

77
export type FindReportedConfigurationDependencies = {

0 commit comments

Comments
 (0)