UNPKG

typescript-express-starter

Version:
14 lines (10 loc) 175 B
import { Field, ObjectType } from 'type-graphql'; @ObjectType() export class User { @Field() id?: number; @Field() email?: string; @Field() password: string; }