mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-29 17:07:07 +08:00
11 lines
326 B
TypeScript
11 lines
326 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 function escapeStringRegexp(str: string): string;
|
|
|
|
export = escapeStringRegexp;
|