Files
DefinitelyTyped/escape-string-regexp/escape-string-regexp.d.ts

13 lines
365 B
TypeScript

// Type definitions for escape-string-regexp
// Project: https://github.com/sindresorhus/escape-string-regexp
// Definitions by: kruncher <https://github.com/kruncher/>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "escape-string-regexp" {
function escapeStringRegexp(str: string): string;
export = escapeStringRegexp;
}