diff --git a/lib/core/calls.ts b/lib/core/calls.ts index 7efe6be..2f8f5d6 100644 --- a/lib/core/calls.ts +++ b/lib/core/calls.ts @@ -10,7 +10,7 @@ export type Params = F extends (ctx: any, ...args: infer P) => any ? P : neve // The return type of a resonate function export type Return = F extends (...args: any[]) => infer T ? Awaited : 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;