BUPKIS
    Preparing search index...

    Variable stringGreaterThanAssertionConst

    stringGreaterThanAssertion: AssertionFunctionSync<
        readonly [ZodString, "to be greater than", ZodString],
        (subject: string, other: string) => { message: string } | undefined,
        readonly [ZodString, PhraseLiteralSlot<"to be greater than">, ZodString],
    > = ...

    Assertion for testing if a string is lexicographically greater than another string.

    expect('b', 'to be greater than', 'a'); // passes
    expect('apple', 'to be greater than', 'banana'); // fails