Problem: You want type-safe mock responses
Problem: You want type-safe mock responses.
Solution:
1. Create an object literal.
2. Use keys to describe each response.
3. Narrow the type via 'as const' and 'satisfies'.
Result:
✅Autocomplete for keys
✅Strongly typed responses
✅Clear description for each response
