Interface OperationIn

interface OperationIn {
    op: "in";
    path: string | Path;
    value: unknown[];
}

Hierarchy (view full)

Properties

Properties

op: "in"
path: string | Path
value: unknown[]