Interface: DiscoverPageOptions
Options for the discoverPage() function.
Example
const opts: DiscoverPageOptions = {
interactiveOnly: true,
includeHidden: false,
limit: 50,
offset: 0,
};
Properties
includeHidden?
readonlyoptionalincludeHidden?:boolean
When true, hidden controls are included. Default: false.
interactiveOnly?
readonlyoptionalinteractiveOnly?:boolean
When true, only interactive controls are returned. Default: false.
limit?
readonlyoptionallimit?:number
Maximum number of controls to return (applied after filtering).
offset?
readonlyoptionaloffset?:number
Number of controls to skip before returning results (applied after filtering).
timeout?
readonlyoptionaltimeout?:number
Discovery timeout in milliseconds. Default: 30_000.