@tsed/schema-formio
Version:
Transform Ts.ED Schema & JsonSchema to a valid Formio schema
15 lines • 321 B
JavaScript
import { Component } from "./component.js";
/**
* Force the output of this field to be sanitized in a specific format.
* @decorator
* @formio
* @property
* @schema
* @param textCase
*/
export function TextCase(textCase) {
return Component({
case: textCase
});
}
//# sourceMappingURL=textCase.js.map