BUPKIS
    Preparing search index...

    Type Alias GeneratorParams

    GeneratorParams:
        | fc.Arbitrary<
            readonly [subject: unknown, phrase: string, ...unknown[]],
        >
        | readonly [
            subject: fc.Arbitrary<any>,
            phrase: fc.Arbitrary<string>,
            ...fc.Arbitrary<any>[],
        ]

    Defines how to generate assertion arguments for property-based tests.

    Two forms are supported:

    1. Single Arbitrary returning a tuple: Useful when subject/phrase/params have interdependencies and must be generated together.
    2. Array of Arbitraries: Each element generates one argument independently. Elements are: [subject, phrase, ...params].
    fc.tuple(fc.string(), fc.constantFrom('to be a string'));
    
    [fc.string(), fc.constantFrom('to be a string', 'to be str')];