UNPKG
antlr4-runtime
Version:
latest (4.13.0)
4.13.0
JavaScript runtime for ANTLR4
github.com/antlr/antlr4
antlr/antlr4
antlr4-runtime
/
src
/
antlr4
/
FileStream.d.ts
10 lines
(5 loc)
•
213 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
CharStream
}
from
"./CharStream"
;
export
declare
class
FileStream
extends
CharStream
{
fileName
:
string
;
constructor
(
fileName
:
string
,
encoding
?:
string
,
decodeToUnicodeCodePoints
?:
boolean
); }