@sinclair/typebox
Version:
Json Schema Type Builder with Static Type Resolution for TypeScript
10 lines (8 loc) • 325 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Uppercase = Uppercase;
const intrinsic_1 = require("./intrinsic");
/** `[Json]` Intrinsic function to Uppercase LiteralString types */
function Uppercase(T, options = {}) {
return (0, intrinsic_1.Intrinsic)(T, 'Uppercase', options);
}
;