Module

x/jtd_type/mod.ts>StaticType

A Novel implementation of JTD (RFC 8927) in typescript
Latest
type alias StaticType
import { type StaticType } from "https://dotland.deno.dev/x/jtd_type@2.2.0/mod.ts";
definition: T["type"] extends
| "float32"
| "float64"
| "int8"
| "uint8"
| "int16"
| "uint16"
| "int32"
| "uint32"
? number : T["type"] extends "boolean" ? boolean : T["type"] extends "string" | "timestamp" ? string : never