@sinclair/typebox
Version:
Json Schema Type Builder with Static Type Resolution for TypeScript
17 lines (15 loc) • 446 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Promise = void 0;
const type_1 = require("../clone/type");
const index_1 = require("../symbols/index");
/** `[JavaScript]` Creates a Promise type */
function Promise(item, options = {}) {
return {
...options,
[index_1.Kind]: 'Promise',
type: 'Promise',
item: (0, type_1.CloneType)(item),
};
}
exports.Promise = Promise;