// Type definitions for escape-string-regexp // Project: https://github.com/sindresorhus/escape-string-regexp // Definitions by: kruncher // faergeek // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare const escapeStringRegexp: (str: string) => string; export = escapeStringRegexp;