Skip to content

FormioDecodedToken

@tsed/formio

Usage

typescript
import { FormioDecodedToken } from "@tsed/formio";

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

Overview

ts
interface FormioDecodedToken extends Record<string, unknown> {
    user: {
        _id: string;
    };
    form: {
        _id: string;
    };
}

user

ts
user: {
     _id: string;
 };

form

ts
form: {
     _id: string;
 };

Released under the MIT License.