Skip to content

Commit

Permalink
Update lib/core/calls.ts
Browse files Browse the repository at this point in the history
Co-authored-by: David Farr <[email protected]>
  • Loading branch information
avillega and dfarr committed Jul 2, 2024
1 parent 6672829 commit ebc77b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/calls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type Params<F> = F extends (ctx: any, ...args: infer P) => any ? P : neve
// The return type of a resonate function
export type Return<F> = F extends (...args: any[]) => infer T ? Awaited<T> : never;

// A top level functio call, to be used in the with `resonate.run`
// A top level function call, to be used in the with `resonate.run`
export type TFC = {
// Fuction Name of the function to be called, has to be previously registered
funcName: string;
Expand Down

0 comments on commit ebc77b7

Please sign in to comment.