UNPKG

@jsonjoy.com/json-type

Version:

High-performance JSON Pointer implementation

12 lines (11 loc) 284 B
import { SchemaBuilder } from './SchemaBuilder'; import type { TypeOf } from './schema'; export * from './common'; export * from './schema'; /** * JSON Type default AST builder. */ export declare const s: SchemaBuilder; export declare namespace s { type infer<T> = TypeOf<T>; }