json-joy
    Preparing search index...

    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 = unknown> {
        not?: boolean;
        op: "test";
        path: string | Path;
        value: T;
    }

    Type Parameters

    • T = unknown

    Hierarchy (View Summary)

    Index

    Properties

    Properties

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