Public
Versions
- Open: VersionChanges from v2 to v3+4-3
import { Type } from "npm:@sinclair/typebox";const querystring = Type.Object({v: Type.Optional(Type.Integer({ minimum: 0 })),});console.log(JSON.stringify(querystring));import { Type } from "npm:@sinclair/typebox"const querystring = Type.Object({v: Type.Optional(Type.Integer({ minimum: 0 })),})console.log(JSON.stringify(querystring))// {"type":"object","properties":{"v":{"minimum":0,"type":"integer"}}} - Open: VersionChanges from v1 to v2+4-2import { Type } from "npm:@sinclair/typebox";
Type.Object({v: Type.Optional(Type.Integer({ minimum: 0 })),});import { Type } from "npm:@sinclair/typebox";const querystring = Type.Object({v: Type.Optional(Type.Integer({ minimum: 0 })),});console.log(JSON.stringify(querystring)); - Open: VersionChanges from v0 to v1+5-0import { Type } from "npm:@sinclair/typebox";Type.Object({v: Type.Optional(Type.Integer({ minimum: 0 })),});
- Open: Version+0-0
Updated: July 15, 2024