UNPKG
incomplete-json-parser
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
A JSON parser that can parse incomplete JSON strings.
github.com/1000ship/incomplete-json-parser
incomplete-json-parser
/
dist
/
scopes
/
index.d.ts
6 lines
(5 loc)
•
238 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
ArrayScope
}
from
"./array.scope"
;
import
{
LiteralScope
}
from
"./literal.scope"
;
import
{
ObjectScope
}
from
"./object.scope"
;
import
{
Scope
}
from
"./scope.interface"
;
export
{
ArrayScope
,
LiteralScope
,
ObjectScope
,
Scope
};