Skip to content

FormioRole

@tsed/formio-types

Usage

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

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

Overview

ts
interface FormioRole extends Record<string, any> {
    _id: string | undefined;
    title: string;
    description: string;
    deleted: number | null;
    default: boolean;
    admin: boolean;
}

_id

ts
_id: string | undefined;

title

ts
title: string;

description

ts
description: string;

deleted

ts
deleted: number | null;

default

ts
default: boolean;

admin

ts
admin: boolean;

Released under the MIT License.