UNPKG

@jsonjoy.com/json-type

Version:

High-performance JSON Pointer implementation

8 lines (7 loc) 271 B
import type * as schema from '../../schema'; import { AbsType } from './AbsType'; export declare class ConType<V = any> extends AbsType<schema.ConSchema<V>> { literal(): V; getOptions(): schema.Optional<schema.ConSchema<V>>; toString(tab?: string): string; }