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