mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 08:28:26 -04:00
6 lines
98 B
TypeScript
6 lines
98 B
TypeScript
|
|
declare module 'regex-parser' {
|
||
|
|
function Parse(regexString: string): RegExp;
|
||
|
|
|
||
|
|
export = Parse;
|
||
|
|
}
|