| 13 | } |
| 14 | |
| 15 | export interface ProductDocument extends ProductInput, mongoose.Document { |
| 16 | createdAt: Date; |
| 17 | updatedAt: Date; |
| 18 | } |
| 19 | |
| 20 | const productSchema = new mongoose.Schema( |
| 21 | { |
nothing calls this directly
no outgoing calls
no test coverage detected