UNPKG
@selaliadobor/incomplete-json-parser
Version:
latest (1.1.8)
1.1.8
1.1.7
1.1.6
1.1.5
A JSON parser that can parse incomplete JSON strings.
github.com/1000ship/incomplete-json-parser
@selaliadobor/incomplete-json-parser
/
dist
/
scopes
/
literal.scope.d.ts
10 lines
(9 loc)
•
309 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Scope
}
from
"./scope.interface"
;
export
declare
class
LiteralScope
extends
Scope
{
content
:
string
;
write
(
letter
:
string
):
boolean
;
private
checkCompletion;
getOrAssume
():
boolean
|
null
|
string
|
number
|
undefined
;
private
parseStringLike;
private
endsWithEscapedQuote; }