You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: correct type for nextTurnParams function parameters
Fixed TypeScript error where nextTurnParams function parameters were typed as
unknown instead of Record<string, unknown>, causing type incompatibility with
the actual function signatures.
Changes:
- Updated Map type to use Record<string, unknown> for params
- Added type assertions when storing functions to match expected signature
- Added type assertion for function return value to preserve type safety
0 commit comments