UNPKG

@eco.js/rcon

Version:

An RCON Interface for ECO

8 lines (7 loc) 244 B
import type ECO from '../ECO'; export default interface RCONParserRule<T> { regex: RegExp; format: (args: RegExpMatchArray | RegExpMatchArray[], controller: ECO) => T | void; multiProperty?: string; matchAll?: boolean; }