Skip to content

Commit 2e183f5

Browse files
authored
Merge pull request microsoft#24238 from bluelovers/patch-1
es2018 regexp dotAll
2 parents 76573c6 + dff19a5 commit 2e183f5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lib/lib.es2018.regexp.d.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,9 @@ interface RegExpExecArray {
2828
groups?: {
2929
[key: string]: string
3030
}
31-
}
31+
}
32+
33+
interface RegExp {
34+
/** Returns a Boolean value indicating the state of the dotAll flag (s) used with a regular expression. Default is false. Read-only. */
35+
readonly dotAll: boolean;
36+
}

0 commit comments

Comments
 (0)