Interface Match<T>

A fuzzy search match.

interface Match<T> {
    item: T;
    ranges: readonly core.Range[];
}

Type Parameters

  • T

Properties

Properties

item: T

The original item.

ranges: readonly core.Range[]

An array of ranges representing the match regions.