Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

277
Views
Sharing typescript interfaces between client and server mongoose model

I'm trying to share some base interfaces between the client code and the server code. I'm having problems when using the interfaces to create data models in mongoose.

The problem I have is how to access the document._id property in the client. I can't add _id to the User interface without causing compilation errors and I can't access _id without declaring it.

My project layout:

/src
-/client
--/user.service.ts
-/server
--/models
---/user.model.ts
-/common
--/common.d.ts

user.service.ts

import { User } from 'common'

 deleteUser(user: User): Promise<User> {
   return this.http.delete( 'http://someurl/api/users' + user._id )
     .toPromise()
     .then( resp => resp.json().data as User )
     .catch( err => this.errorHandler(err) );
 }

user.model.ts

import { model, Schema, Document } from 'mongoose';
import { User } from 'common';

let UserSchema = new Schema {
  firstName: String,
  lastName: String,
  email: String
}

export interface UserDocument extends User, Document { }

export var UserModel:Model<UserDocument> = model<UserDocument>('Users', UserSchema);

common.d.ts

declare module 'common' {
  export interface User {
    firstName: string;
    lastName: string;
    email: string;
  }
}

Thanks for the help

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You can declare _id as optional:

export interface User {
    _id?: string;
    firstName: string;
    lastName: string;
    email: string;
}

Or you can have another interface for a user with id:

export interface PersistedUser extends User {
    _id: string;
}

And cast to it whenever needed.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!