Should You Declare Return Types?
.cursor/rules
addition you can make for handling return types in TypeScript.
# Return Types
When declaring functions on the top-level of a module,
declare their return types. This will help future AI
assistants understand the function's purpose.
```ts
const myFunc = (): string => {
return "hello";
};
```
One exception to this is components which return JSX.
No need to
