A WindowFinder should provide an abstraction layer to perform window searches

ColorFinderInterface

interface ColorFinderInterface {
    findMatch<PROVIDER_DATA_TYPE>(query): Promise<MatchResult<Point>>;
    findMatches<PROVIDER_DATA_TYPE>(query): Promise<MatchResult<Point>[]>;
}

Methods

Generated using TypeDoc