mirror of
https://github.com/sim1222/misskey.git
synced 2025-04-29 02:37:22 +09: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;
|
|
}
|