UNPKG

@sinclair/typebox

Version:

Json Schema Type Builder with Static Type Resolution for TypeScript

7 lines (6 loc) 260 B
import { CreateType } from '../create/type.mjs'; import { Kind } from '../symbols/index.mjs'; /** `[JavaScript]` Creates a Promise type */ export function Promise(item, options) { return CreateType({ [Kind]: 'Promise', type: 'Promise', item }, options); }