Skip to content

Commit

Permalink
don't use any
Browse files Browse the repository at this point in the history
  • Loading branch information
EskiMojo14 committed Jan 25, 2025
1 parent 8e5c19b commit 60c7a7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/standard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ export namespace StandardSchemaDictionary {
* A dictionary of Standard Schemas that match the input and output types.
*/
export type Matching<
Input extends Record<string, any>,
Output extends Record<keyof Input, any> = Input,
Input,
Output extends Record<keyof Input, unknown> = Input,
> = {
[K in keyof Input]-?: StandardSchemaV1<Input[K], Output[K]>;
};
Expand Down

0 comments on commit 60c7a7e

Please sign in to comment.