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 maximum amount of words that can be added to this field. * @decorator * @formio * @property * @schema * @param value */ export function MinWords(value) { return Validate("minWords", value); }