UNPKG

@tsed/schema-formio

Version:

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

16 lines (15 loc) 290 B
import { Component } from "./component.js"; /** * Configure the property as Password component. * @decorator * @formio * @property * @schema */ export function Password(props = {}) { return Component({ ...props, type: "password", protected: true }); }