<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [@friendlycaptcha/sdk](./sdk.md) &gt; [StartMode](./sdk.startmode.md)

## 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 get activated automatically at all, the user needs to press the widget (or `.start()` gets called using the Javascript API).

**Signature:**

```typescript
export type StartMode = "focus" | "auto" | "none";
```
