BUPKIS
    Preparing search index...

    Variable numberLessThanAssertionConst

    numberLessThanAssertion: AssertionFunctionSync<
        readonly [
            ZodNumber,
            readonly ["to be less than", "to be lt"],
            ZodNumber,
        ],
        (_: number, other: number) => ZodNumber,
        readonly [
            ZodNumber,
            PhraseLiteralChoiceSlot<readonly ["to be less than", "to be lt"]>,
            ZodNumber,
        ],
    > = ...

    Assertion for testing if a number is less than another number.

    expect(3, 'to be less than', 5); // passes
    expect(5, 'to be less than', 2); // fails