UNPKG

@tsed/schema-formio

Version:

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

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