https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 93bd577458d55cd720b2677705feab5c91eb12ce authored by Daniel Rosenwasser on 12 November 2022, 00:32:14 UTC
Bump version to 4.9.3 and LKG.
Tip revision: 93bd577
es2020.string.d.ts
/// <reference lib="es2015.iterable" />

interface String {
    /**
     * Matches a string with a regular expression, and returns an iterable of matches
     * containing the results of that search.
     * @param regexp A variable name or string literal containing the regular expression pattern and flags.
     */
    matchAll(regexp: RegExp): IterableIterator<RegExpMatchArray>;
}
back to top