UNPKG
parjs
Version:
latest (1.3.9)
next (0.12.0-test1)
pre-0.12.0 (0.11.2)
1.3.9
1.3.8
1.3.7
1.3.6
1.3.5
1.3.4
1.3.2
1.3.1
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.0
0.16.1
0.16.0
0.15.0
0.14.2
0.14.1
0.14.0
0.13.1
0.13.0-test3
0.13.0-test2
0.13.0-test
0.12.7
0.12.6
0.12.5
0.12.4
0.12.3
0.12.2
0.12.1
0.12.0
0.12.0-test1
0.11.2
0.11.1
0.11.0
0.11.0-test
0.10.7
0.10.6
0.10.5
0.10.4
0.10.3
0.10.1
0.10.0
0.9.1
0.9.0
0.8.0
0.7.2
0.7.0
0.6.4
0.6.3
0.6.2
0.6.1
0.6.0
0.5.1
0.5.0
0.4.1
0.4.0
0.3.0
0.2.1
0.2.0
0.1.4
0.1.3-test
0.1.2-test
0.1.1-test
0.1.0-test
A parser-combinator library for JavaScript.
github.com/GregRos/parjs
GregRos/parjs
parjs
/
internal
/
parsers
/
rest.d.ts
11 lines
(10 loc)
•
244 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** *
@module
parjs */
/** */
import { Parjser }
from
"../parjser"
;
/** * Returns a parser that consumes all the rest of the input and yields the * text that was parsed. Always succeeds. */
export
declare
function
rest
(
):
Parjser
<
string
>
;