We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6d6f0f commit c6bc38aCopy full SHA for c6bc38a
lib/optionalsearchparameters.class.ts
@@ -8,11 +8,13 @@ export class OptionalSearchParameters<PROVIDER_DATA_TYPE> {
8
/**
9
* {@link OptionalSearchParameters} class constructor
10
* @param searchRegion Optional {@link Region} to limit the search space to
11
+ * @param confidence Optional confidence value to configure image or text match confidence
12
* @param abort An {@link AbortSignal} to cancel an ongoing call to `waitFor`
13
* @param providerData Optional data that gets passed onto the provider implementation
14
*/
15
constructor(
16
public searchRegion?: Region | Promise<Region>,
17
+ public confidence?: number,
18
public abort?: AbortSignal,
19
public providerData?: PROVIDER_DATA_TYPE
20
) {}
0 commit comments