https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 129896e086c03ce1d6672fb354597c2b316fabfd authored by Sheetal Nandi on 10 March 2023, 19:49:22 UTC
Add allowPlugins on commandline which is needed to resolve watchFactory
Tip revision: 129896e
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