eslint-plugin-regexp
Version:
ESLint plugin for finding RegExp mistakes and RegExp style guide violations.
15 lines (14 loc) • 556 B
TypeScript
import { TypeGlobalFunction } from "./function";
import type { ITypeClass, NamedType, OtherTypeName, TypeClass, TypeInfo } from ".";
export declare class TypeRegExp implements ITypeClass {
type: "RegExp";
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 REGEXP: TypeRegExp;
export declare function buildRegExpConstructor(): TypeGlobalFunction;