Interface UpdateByIDParams

interface UpdateByIDParams {
    _id: any;
    updateClosure: ((mutableDocument) => void);
}

Properties

Properties

_id: any

The _id of the document to remove

updateClosure: ((mutableDocument) => void)

The update function to perform on the specified document

Type declaration

    • (mutableDocument): void
    • Parameters

      • mutableDocument: MutableDocument

      Returns void