UNPKG

@tsed/schema-formio

Version:

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

13 lines (12 loc) 259 B
import { Validate } from "./validate.js"; /** * Add the minimum amount of words that can be added to this field. * @decorator * @formio * @property * @schema * @param value */ export function MaxWords(value) { return Validate("maxWords", value); }