replaceAll.d.ts 121 B

1234567
  1. declare function replaceAll(
  2. str: string,
  3. substr: string,
  4. newSubstr: string
  5. ): string;
  6. export = replaceAll;