Interface ModifyResult<TSchema>

interface ModifyResult<TSchema> {
    lastErrorObject?: mongoose.mongo.BSON.Document;
    ok: 0 | 1;
    value: WithId<TSchema>;
}

Type Parameters

Properties

lastErrorObject?: mongoose.mongo.BSON.Document
ok: 0 | 1
value: WithId<TSchema>