UNPKG

@jsonjoy.com/json-type

Version:

High-performance JSON Pointer implementation

8 lines (7 loc) 280 B
import type * as classes from '../type'; import { ObjValue } from './ObjValue'; import { Value } from './Value'; export declare const value: { <T extends classes.ObjType>(type: T, data: unknown): ObjValue<T>; <T extends classes.Type>(type: T, data: unknown): Value<T>; };