/* taken from mongoose.Document */ interface Document { increment(): this; } /* our custom model extends the mongoose document */ interface CustomDocument extends Document { } export class Example { constructor() { // types of increment not compatible?? this.test(); } public test() { } }