@nevware21/tripwire - v0.1.2
    Preparing search index...

    Interface IIncludeOp<R>

    Represents the include operations for the assertion scope.

    interface IIncludeOp<R> {
        all: IAllOp<R>;
        any: IAnyOp<R>;
        (match: any, evalMsg?: MsgSource): R;
    }

    Type Parameters

    • R

      The type of the result of the operation.

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    all: IAllOp<R>

    Provides access to additional operations based on the IAnyOp interface for the assertion scope.

    any: IAnyOp<R>

    Provides access to additional operations based on the IAllOp interface for the assertion scope.