Skip to content

Commit dff19a5

Browse files
authored
es2018 regexp dotAll
1 parent 66d6e5e commit dff19a5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lib/lib.es2018.regexp.d.ts

+6-1
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)