Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.2k views
in Technique[技术] by (71.8m points)

Typescript module augmentation error: Generic type requires 2 type arguments

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?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...