diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-08-27 10:12:59 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-27 10:12:59 +1000 |
commit | 935133f53af2b0efab5d22effff1239dc0e36147 (patch) | |
tree | f1cd283e50618e0cce4f70ff59a1e204856a592b /cli/dts/lib.esnext.string.d.ts | |
parent | b9a965c607966efff91118e9a6f604c8f48ba88e (diff) |
feat(cli): Update to TypeScript 4.4 (#11678)
Diffstat (limited to 'cli/dts/lib.esnext.string.d.ts')
-rw-r--r-- | cli/dts/lib.esnext.string.d.ts | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/cli/dts/lib.esnext.string.d.ts b/cli/dts/lib.esnext.string.d.ts index aa3239ddd..812f70645 100644 --- a/cli/dts/lib.esnext.string.d.ts +++ b/cli/dts/lib.esnext.string.d.ts @@ -13,12 +13,29 @@ See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. ***************************************************************************** */ + + /// <reference no-default-lib="true"/> + interface String { - /** - * Access string by relative indexing. - * @param index index to access. - */ - at(index: number): string | undefined; + /** + * Access string by relative indexing. + * @param index index to access. + */ + at(index: number): string | undefined; + + /** + * Replace all instances of a substring in a string, using a regular expression or search string. + * @param searchValue A string to search for. + * @param replaceValue A string containing the text to replace for every successful match of searchValue in this string. + */ + replaceAll(searchValue: string | RegExp, replaceValue: string): string; + + /** + * Replace all instances of a substring in a string, using a regular expression or search string. + * @param searchValue A string to search for. + * @param replacer A function that returns the replacement text. + */ + replaceAll(searchValue: string | RegExp, replacer: (substring: string, ...args: any[]) => string): string; } |