Interface PlaintextPatch

interface PlaintextPatch {
    check?: ((source: string) => boolean);
    find?: string | RegExp;
    replacements: (PlaintextReplacer | RegexReplacement)[];
}

Properties

check?: ((source: string) => boolean)
find?: string | RegExp