Skip to content

Commit 6b0c173

Browse files
committed
Update type definition for _ to use es-toolkit instead of lodash
The lodash-compat module now uses es-toolkit and es-toolkit/compat, so the type should reflect the actual implementation. Signed-off-by: Sora Morimoto <[email protected]>
1 parent 973513a commit 6b0c173

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ export interface GenerateApiConfiguration {
718718
>;
719719
formatModelName: (name: string) => string;
720720
fmtToJSDocLine: (line: string, params?: { eol?: boolean }) => string;
721-
_: import("lodash").LoDashStatic;
721+
_: typeof import("es-toolkit") & typeof import("es-toolkit/compat");
722722
require: (path: string) => unknown;
723723
};
724724
}

0 commit comments

Comments
 (0)