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(mashups): resolve type errors
Fixes TypeScript check errors in the 'mashups' directory.
- Adds JSDoc annotations to resolve implicit 'any' types.
- Corrects argument types for API calls.
- Defines a local type for the onEdit event object.
- Refactors code to avoid variable reassignment with different types.
* feat(mashups): resolve type errors and use let/const
This commit addresses two main points:
1. Resolves all TypeScript check errors in the 'mashups' directory by:
- Adding JSDoc annotations to resolve implicit 'any' types.
- Correcting argument types for API calls.
- Defining a local type for the onEdit event object.
- Refactoring code to avoid variable reassignment with different types.
2. Refactors all `var` declarations to use `let` and `const` for improved scope management and code readability, following modern JavaScript standards.
---------
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
0 commit comments