| 1 | import { faker } from "@faker-js/faker"; |
| 2 | |
| 3 | interface User { |
| 4 | id: string; |
| 5 | firstName: string; |
| 6 | lastName: string; |
| 7 | email: string; |
| 8 | } |
| 9 | interface Product { |
| 10 | id: string; |
| 11 | name: string; |
nothing calls this directly
no outgoing calls
no test coverage detected