UNPKG

@tsed/schema-formio

Version:

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

14 lines (13 loc) 252 B
import { Component } from "./component.js"; /** * Change the multiple value on the decorated property. * @decorator * @formio * @property * @schema */ export function Multiple(multiple = false) { return Component({ multiple }); }