Port changes in #24238 to source file

This commit is contained in:
Mohamed Hegazy 2018-05-19 11:23:41 -07:00
parent 175d721614
commit c19408ba4d

View File

@ -8,4 +8,12 @@ interface RegExpExecArray {
groups?: {
[key: string]: string
}
}
interface RegExp {
/**
* Returns a Boolean value indicating the state of the dotAll flag (s) used with a regular expression.
* Default is false. Read-only.
*/
readonly dotAll: boolean;
}