Interface ModifyResult<TSchema>

interface ModifyResult<TSchema> {
    lastErrorObject?: Document;
    ok: 0 | 1;
    value: null | WithId<TSchema>;
}

Type Parameters

Properties

lastErrorObject?: Document
ok: 0 | 1
value: null | WithId<TSchema>