Skip to content

FormioToken

@tsed/formio-types

Usage

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

See /packages/third-parties/formio-types/src/types/domain/FormioToken.ts.

Overview

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

key

ts
key: string;

value

ts
value: string;

expireAt

ts
expireAt: Date;

Released under the MIT License.