Interface OperationTest<T>

Tests that value at path strictly equals value. If not is set to true inverts the condition to test for value not being strictly equal.

interface OperationTest<T> {
    not?: boolean;
    op: "test";
    path: string | Path;
    value: T;
}

Type Parameters

  • T = unknown

Hierarchy (view full)

Properties

Properties

not?: boolean
op: "test"
path: string | Path
value: T