TypeScript utility type to extract the input type from a Task.
type EmailInput = InferTaskInput<typeof emailTask>// Result: { to: string, subject: string } Copy
type EmailInput = InferTaskInput<typeof emailTask>// Result: { to: string, subject: string }
TypeScript utility type to extract the input type from a Task.