Skip to content

Commit

Permalink
Use any instead of unknown for Provider typing
Browse files Browse the repository at this point in the history
Be permissive here to allow for much easier reuse.
  • Loading branch information
jpwilliams committed Nov 20, 2024
1 parent 32c8639 commit f16724e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/inngest/src/components/ai/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,13 @@ export interface Provider {
/**
* The input typing for the provider.
*/
input: unknown;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
input: any;
/**
* The output typing for the provider.
*/
output: unknown;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
output: any;
};

/**
Expand Down

0 comments on commit f16724e

Please sign in to comment.