Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

279
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda