UNPKG

@tsed/schema-formio

Version:

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

16 lines (14 loc) 285 B
import {Component} from "./component.js"; /** * The placeholder text that will appear when this field is empty. * @decorator * @formio * @property * @schema * @param placeholder */ export function Placeholder(placeholder: string) { return Component({ placeholder }); }