UNPKG

@tsed/schema-formio

Version:

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

16 lines (15 loc) 292 B
import { Component } from "./component.js"; /** * Configure the property as Textarea component. * @decorator * @formio * @property * @schema */ export function Textarea(props = {}) { return Component({ autoExpand: false, ...props, type: "textarea" }); }