https://github.com/Microsoft/TypeScript
Raw File
Tip revision: cc005d1d72ffe1d7867e8583f405c752cfcdcc1c authored by Nathan Shively-Sanders on 09 February 2022, 16:32:35 UTC
Make spread overwrite error more lenient.
Tip revision: cc005d1
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