import type { OHD } from '../OHD'; export interface RCONParserRule { regex: RegExp | RegExp[]; format: (args: RegExpMatchArray | RegExpMatchArray[], controller: OHD) => T | void; multiProperty?: string; matchAll?: boolean; }