Interface StringNodeRule

interface StringNodeRule {
    pattern: string | RegExp;
    replace?: string;
    type?: "pattern";
}

Properties

pattern: string | RegExp
replace?: string
type?: "pattern"