如何在打字稿中声明模式的DBRefs的接口字段(mongoose / mongodb中的引用字段)?

时间:2019-06-01 11:22:03

标签: javascript typescript express mongoose interface

我是TypeScript的新手,正在尝试将现有的Express应用程序转换为ts。在为模式声明接口时,如何在其中声明模式的DBRef字段,该字段通常是模式声明中的ObjectId字段,以便可以在该字段上使用填充。您能提供相应的界面吗?

const schema = new Schema({
    postedBy:{
        type: Schema.Types.ObjectId,
        required: true,
        ref: 'User'
    }
});

0 个答案:

没有答案