Files
2025-08-11 11:51:38 +08:00

8 lines
121 B
TypeScript

declare function replaceAll(
str: string,
substr: string,
newSubstr: string
): string;
export = replaceAll;