8 lines
121 B
TypeScript
8 lines
121 B
TypeScript
|
declare function replaceAll(
|
||
|
str: string,
|
||
|
substr: string,
|
||
|
newSubstr: string
|
||
|
): string;
|
||
|
|
||
|
export = replaceAll;
|