Interface RawPlaintextPatch

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

Properties

check?: ((source: string) => boolean)
find?: string | RegExp
replacements: PlaintextReplacer[]