UNPKG

eslint-plugin-regexp

Version:

ESLint plugin for finding RegExp mistakes and RegExp style guide violations.

6 lines (5 loc) 341 B
/// <reference types="@eslint-community/regexpp" /> import type { Node } from "@eslint-community/regexpp/ast"; import type { ReadonlyFlags } from "regexp-ast-analysis"; import type { ShortCircuit } from "./common"; export declare function isEqualNodes<N extends Node>(a: N, b: N, flags: ReadonlyFlags, shortCircuit?: ShortCircuit): boolean;