Interface RCONParserRule<T>

interface RCONParserRule<T> {
    format: (
        args: RegExpMatchArray | RegExpMatchArray[],
        controller: OHD,
    ) => void | T;
    matchAll?: boolean;
    multiProperty?: string;
    regex: RegExp | RegExp[];
}

Type Parameters

  • T

Properties

format: (
    args: RegExpMatchArray | RegExpMatchArray[],
    controller: OHD,
) => void | T
matchAll?: boolean
multiProperty?: string
regex: RegExp | RegExp[]