You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * Matches a string with a regular expression, and returns an array containing the results of that search. * @param regexp A variable name or string literal containing the regular expression pattern and flags. */match(regexp: string): RegExpMatchArray|null;/** * Matches a string with a regular expression, and returns an array containing the results of that search. * @param regexp A regular expression object that contains the regular expression pattern and applicable flags. */match(regexp: RegExp): RegExpMatchArray|null;
The text was updated successfully, but these errors were encountered:
https://github.com/Microsoft/TypeScript-Handbook/blob/master/pages/declaration%20files/Do's%20and%20Don'ts.md#use-union-types
TypeScript Version: master
Code
https://github.com/Microsoft/TypeScript/blob/master/src/lib/es5.d.ts#L330-L340
Expected behavior:
Actual behavior:
The text was updated successfully, but these errors were encountered: