Version:
type

WordQuery

A word query is a text query that searches for a single word on screen.
It will be processed by an instance.

typescript
type WordQuery = Extract<TextQuery, { by: { word: string | RegExp } }>

Was this page helpful?