UNPKG

eslint-plugin-sonarjs

Version:
7 lines (6 loc) 313 B
/// <reference types="@eslint-community/regexpp" /> import { CapturingGroup, Group, LookaroundAssertion, Pattern } from '@eslint-community/regexpp/ast'; /** * An alternation is a regexpp node that has an `alternatives` field. */ export type Alternation = Pattern | CapturingGroup | Group | LookaroundAssertion;