6 lines
126 B
TypeScript
6 lines
126 B
TypeScript
|
|
declare function convert(regex: RegExp, { argsOnly }?: {
|
||
|
|
argsOnly?: boolean | undefined;
|
||
|
|
}): string;
|
||
|
|
|
||
|
|
export { convert };
|