sroehrl/node-express-typescript

View on GitHub
src/models/user/UserInterface.ts

Summary

Maintainability
A
0 mins
Test Coverage
interface UserInterface {
    id?: string,
    userName: string,
    password?: string,
    createdAt?:string,
    deletedAt?:any
}