diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-07-19 11:56:14 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-19 11:56:14 +1000 |
commit | 07eb44e483314528c96d6125a306167dbd308c7e (patch) | |
tree | d319104e81c5e08a438155f13877811e9bd8855d /cli/dts/lib.esnext.string.d.ts | |
parent | a23c0af5bd1bf56a5fdb051278138258c09ea076 (diff) |
fix(tsc): add .at() types manually to tsc (#11443)
Fixes: #11441
Diffstat (limited to 'cli/dts/lib.esnext.string.d.ts')
-rw-r--r-- | cli/dts/lib.esnext.string.d.ts | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/cli/dts/lib.esnext.string.d.ts b/cli/dts/lib.esnext.string.d.ts index 89b27e2fe..aa3239ddd 100644 --- a/cli/dts/lib.esnext.string.d.ts +++ b/cli/dts/lib.esnext.string.d.ts @@ -13,23 +13,12 @@ See the Apache Version 2.0 License for specific language governing permissions and limitations under the License. ***************************************************************************** */ - - /// <reference no-default-lib="true"/> - interface 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 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; + /** + * Access string by relative indexing. + * @param index index to access. + */ + at(index: number): string | undefined; } |