UNPKG

@tsed/schema-formio

Version:

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

16 lines (14 loc) 247 B
import {Component} from "./component.js"; /** * Adds a tooltip to the side of this field. * @decorator * @formio * @property * @schema * @param tooltip */ export function Tooltip(tooltip: string) { return Component({ tooltip }); }