Interface OperationInc

Increments a number by a specified value inc.

interface OperationInc {
    inc: number;
    op: "inc";
    path: string | Path;
}

Hierarchy (view full)

Properties

Properties

inc: number
op: "inc"
path: string | Path