difference in how new typescript works with generics: old:  new:  method signature: ``` const handleStep = async <T extends SendStep>( stepName: T, validationFn: (typeof SendProcess)[typeof stepName], ...args: Parameters<typeof validationFn> ) => { ///... } ```
Activity
jakebailey commentedon May 22, 2025
This is a temporary problem; our type printing is not yet complete but will improve (or be fixed) with #791.
jakebailey commentedon Jun 4, 2025
This should be fixed now, after #791 and other fixes.