Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
gronxb committed Mar 9, 2025
1 parent 7660317 commit 149056d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugins/plugin-core/src/types/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ export type RequiredDeep<
: E extends Promise<infer ValueType>
? Promise<RequiredDeep<ValueType>>
: E extends (...arguments_: any[]) => unknown
? {} extends RequiredObjectDeep<E>
? // biome-ignore lint/complexity/noBannedTypes: <explanation>
{} extends RequiredObjectDeep<E>
? E
: HasMultipleCallSignatures<E> extends true
? E
Expand Down

0 comments on commit 149056d

Please sign in to comment.