UNPKG

@tsed/schema

Version:
13 lines (12 loc) 275 B
import { from } from "./from.js"; /** * Declare a new integer model. * * See @@JsonSchema@@ to discover available methods. * * @returns {JsonSchema} A schema configured for integer values * @function */ export function integer() { return from(Number).integer(); }