Skip to content

FormioActionInfo

@tsed/formio-types

Usage

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

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

Overview

ts
interface FormioActionInfo {
    name: string;
    title: string;
    description: string;
    priority: number;
    defaults: {
        handler: string[];
        method: string[];
    };
    access?: {
        handler: boolean;
        method: boolean;
    };
}

name

ts
name: string;

title

ts
title: string;

description

ts
description: string;

priority

ts
priority: number;

defaults

ts
defaults: {
     handler: string[];
     method: string[];
 };

access

ts
access?: {
     handler: boolean;
     method: boolean;
 };

Released under the MIT License.