| 3 | import config from "config"; |
| 4 | |
| 5 | export interface UserInput { |
| 6 | email: string; |
| 7 | name: string; |
| 8 | password: string; |
| 9 | } |
| 10 | |
| 11 | export interface UserDocument extends UserInput, mongoose.Document { |
| 12 | createdAt: Date; |
nothing calls this directly
no outgoing calls
no test coverage detected