mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 07:53:08 +02:00
8 lines
141 B
TypeScript
8 lines
141 B
TypeScript
|
declare module 'escape-regexp' {
|
||
|
function escapeRegExp(str: string): string;
|
||
|
|
||
|
namespace escapeRegExp {} // Hack
|
||
|
|
||
|
export = escapeRegExp;
|
||
|
}
|