DefinitelyTyped/types/escape-string-regexp/index.d.ts

12 lines
389 B
TypeScript

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