A TextFinder should provide an abstraction layer to perform text searches

TextFinderInterface

interface TextFinderInterface {
    findMatch<PROVIDER_DATA_TYPE>(matchRequest): Promise<MatchResult<Region>>;
    findMatches<PROVIDER_DATA_TYPE>(matchRequest): Promise<MatchResult<Region>[]>;
}

Methods

Generated using TypeDoc