UNPKG

@tsed/schema-formio

Version:

Transform Ts.ED Schema & JsonSchema to a valid Formio schema

16 lines (14 loc) 287 B
import {Component} from "./component.js"; /** * Change the visibility of the current property on a table. * @param bool * @decorator * @formio * @property * @schema */ export function TableView(bool: boolean): PropertyDecorator { return Component({ tableView: bool }); }