Skip to content

Commit

Permalink
fix: usecase type
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasrubims committed Apr 11, 2024
1 parent d0bc0e6 commit cc7fdb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/@types/infra/topics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface SubscribedTopic {
}

export interface UseCaseTopic {
useCase: (payload: unknown) => Promise<Response>;
useCase: (payload: any) => Promise<Response>;
validation: ValidationSchema;
numPartitions?: number;
separatedConsumer?: boolean;
Expand Down

0 comments on commit cc7fdb8

Please sign in to comment.