@cucumber/core
    Preparing search index...

    Type Alias AmbiguousStep

    A step that was matched to multiple step definitions

    type AmbiguousStep = {
        matches: ReadonlyArray<DefinedStep>;
        pickleStep: PickleStep;
        type: "ambiguous";
    }
    Index

    Properties

    matches: ReadonlyArray<DefinedStep>

    The step definitions that matched

    pickleStep: PickleStep

    The pickle step that was ambiguous

    type: "ambiguous"

    Discriminator field to identify this as an ambiguous step