UNPKG

eslint-plugin-regexp

Version:

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

13 lines (12 loc) 438 B
import type { ITypeClass, NamedType, OtherTypeName, TypeClass, TypeInfo } from "."; export declare class TypeGlobal implements ITypeClass { type: "Global"; has(_type: NamedType | OtherTypeName): boolean; paramType(): null; propertyType(name: string): TypeInfo | null; iterateType(): null; returnType(): null; typeNames(): string[]; equals(o: TypeClass): boolean; } export declare const GLOBAL: TypeGlobal;