https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 01cbedf387434008617d3e37e6fc8e26160a589e authored by Daniel Rosenwasser on 04 October 2022, 23:34:20 UTC
Updated test case.
Tip revision: 01cbedf
es2020.symbol.wellknown.d.ts
/// <reference lib="es2015.iterable" />
/// <reference lib="es2015.symbol" />

interface SymbolConstructor {
    /**
     * A regular expression method that matches the regular expression against a string. Called
     * by the String.prototype.matchAll method.
     */
    readonly matchAll: unique symbol;
}

interface RegExp {
    /**
     * Matches a string with this regular expression, and returns an iterable of matches
     * containing the results of that search.
     * @param string A string to search within.
     */
    [Symbol.matchAll](str: string): IterableIterator<RegExpMatchArray>;
}
back to top