MCPcopy Index your code
hub / github.com/TomDoesTech/REST-API-Tutorial-Updated / UserInput

Interface UserInput

src/models/user.model.ts:5–9  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import config from "config";
4
5export interface UserInput {
6 email: string;
7 name: string;
8 password: string;
9}
10
11export interface UserDocument extends UserInput, mongoose.Document {
12 createdAt: Date;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected