我是TypeScript的新手,正在尝试将现有的Express应用程序转换为ts。在为模式声明接口时,如何在其中声明模式的DBRef字段,该字段通常是模式声明中的ObjectId字段,以便可以在该字段上使用填充。您能提供相应的界面吗?
const schema = new Schema({
postedBy:{
type: Schema.Types.ObjectId,
required: true,
ref: 'User'
}
});