# OptionKind

`type` in `core` · v0.8.0

<https://docs.seedcord.org/packages/core/0.8.0/types/option-kind>

A slash option kind as a plain string union (`string`, `channel`, ...), keyed to the registry.

## Declaration

```ts
type OptionKind =
    | "string"
    | "integer"
    | "number"
    | "boolean"
    | "user"
    | "channel"
    | "role"
    | "mentionable"
    | "attachment";
```
