UNPKG

incomplete-json-parser

Version:

A JSON parser that can parse incomplete JSON strings.

7 lines (6 loc) 217 B
import { Scope } from "./scope.interface"; export declare class LiteralScope extends Scope { content: string; write(letter: string): boolean; getOrAssume(): boolean | null | string | number | undefined; }