Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to replace original type with module augmentation:

Original:

export declare type DocumentType<T> = (T extends Base<any> ? Omit<mongoose.Document, '_id'> & T : mongoose.Document & T) & IObjectWithTypegooseFunction;

My local index.d.ts:

import '@typegoose/typegoose';
import { Base } from '@typegoose/typegoose/lib/defaultClasses';
import mongoose from 'mongoose';
import { IObjectWithTypegooseFunction } from '@typegoose/typegoose/lib/types';

declare module '@typegoose/typegoose' {
  // just copy-paste from original
  type DocumentType<T> = (T extends Base<any>
    ? Omit<mongoose.Document, '_id'> & T
    : mongoose.Document & T) &
    IObjectWithTypegooseFunction;
}

And finally I got an error:

// TS2314: Generic type 'DocumentType' requires 2 type argument(s).
interface User extends DocumentType<UserDocument> {}

What am I doing wrong? Obviously there's only one generic type in DocumenType<T>. Why does it complain about second type?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...