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
/
definitions
/
RCONParserRule.d.ts
8 lines
(7 loc)
•
244 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
type
ECO
from
'../ECO'
;
export
default
interface
RCONParserRule
<T> {
regex
:
RegExp
;
format
:
(
args
:
RegExpMatchArray
|
RegExpMatchArray
[],
controller
: ECO
) =>
T |
void
;
multiProperty
?:
string
;
matchAll
?:
boolean
; }