UNPKG
@afocommunity/eco-rcon
Version:
latest (0.0.1)
0.0.1
An RCON Interface for ECO
github.com/afocommunity/ECO-RCON
afocommunity/ECO-RCON
@afocommunity/eco-rcon
/
lib
/
parser
/
RCONParser.d.ts
9 lines
(8 loc)
•
263 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
RCONParserRule
from
'../definitions/RCONParserRule'
;
import
type
ECO
from
'../ECO'
;
export
default
class
RCONParser
{
rules
:
RCONParserRule
<
unknown
>[];
controller
:
ECO
;
constructor
(
controller
: ECO
);
parse
(
input
:
string
):
unknown
; }