> For the complete documentation index, see [llms.txt](https://guide.touchguild.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guide.touchguild.com/intents.md).

# Intents

## Available intents

<pre class="language-typescript"><code class="lang-typescript">GatewayLayerIntent.ALL
GatewayLayerIntent.GUILDS
<strong>GatewayLayerIntent.GUILD_MESSAGES
</strong>GatewayLayerIntent.GUILD_MESSAGE_REACTIONS
GatewayLayerIntent.MESSAGE_CONTENT
GatewayLayerIntent.GUILD_WEBHOOKS
</code></pre>

## Example on how to enable some intents

```typescript
const client = new Client({
    token: "bla bla",
    intents: [GatewayLayerIntent.GUILD_WEBHOOKS, GatewayLayerIntent.GUILDS]
});
```
