UNPKG

@tsed/schema-formio

Version:

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

18 lines (17 loc) 283 B
import { Component } from "./component.js"; /** * Add validation rules. * @decorator * @formio * @property * @schema * @param key * @param value */ export function Validate(key, value) { return Component({ validate: { [key]: value } }); }