friendly-captcha-sdk > StartMode
StartMode type
The start mode of the widget.
* "auto"
: the widget gets activated as soon as it is created. * "focus"
: the widget gets activated as soon as the form above it is focused. * "none"
: The widget does not start automatically at all, the user needs to press the widget.
Signature:
export declare type StartMode = "focus" | "auto" | "none";