UNPKG
json-express
Version:
latest (2.3.4)
2.3.4
2.3.3
2.3.2
2.3.1
2.3.0
2.2.3
2.2.2
2.2.1
2.2.0
2.0.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Parse JSON expression and transform into another forms.
github.com/elfrog/json-express
json-express
/
lib
/
peekable-string.d.ts
11 lines
(10 loc)
•
235 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
declare
class
PeekableString
{
index
:
number
;
source
:
string
;
constructor
(
source
:
string
);
clear
():
void
;
peek
(
rel
?:
number
):
string
;
next
(
rel
?:
number
):
void
;
trim
():
void
; }
export
default
PeekableString
;