Represents a value that was successfully found and matched during a search operation.
Remarks
This interface contains the matched value along with metadata about the match quality
and its position in the original search list.
Example
// Example of a FoundValue result from searching for "red" in ["red", "green", "blue"] constfoundValue: FoundValue = { value:"red", index:0, score:1.0 };
Represents a value that was successfully found and matched during a search operation.
Remarks
This interface contains the matched value along with metadata about the match quality and its position in the original search list.
Example