nextfriday-types
Installation
SKILL.md
Next Friday Types
Rules for TypeScript type definitions and annotations.
React Props
Props Suffix
Interfaces in component files must end with Props.
// Bad: Card.tsx
interface Card {}
// Good: Card.tsx
interface CardProps {}