---
url: /api/third-parties/formio-types/types/domain/interface-formio-token.md
description: api documentation of FormioToken from @tsed/formio-types
---

## Usage

```typescript
import { FormioToken } from "@tsed/formio-types";
```

> See [/packages/third-parties/formio-types/src/domain/FormioToken.ts](https://github.com/tsedio/tsed/blob/v8.38.4/packages/third-parties/formio-types/src/domain/FormioToken.ts#L0-L0).

## Overview

```ts
interface FormioToken {
    key: string;
    value: string;
    expireAt: Date;
}
```

## key

```ts
key: string;
```

## value

```ts
value: string;
```

## expireAt

```ts
expireAt: Date;
```
