mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
385 B
TypeScript
12 lines
385 B
TypeScript
// Type definitions for escape-string-regexp
|
|
// 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;
|