From c19408ba4db156d4810d77ac668a77d598d21004 Mon Sep 17 00:00:00 2001 From: Mohamed Hegazy Date: Sat, 19 May 2018 11:23:41 -0700 Subject: [PATCH] Port changes in #24238 to source file --- src/lib/es2018.regexp.d.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/lib/es2018.regexp.d.ts b/src/lib/es2018.regexp.d.ts index 85e1bc909b5..2067b4846d7 100644 --- a/src/lib/es2018.regexp.d.ts +++ b/src/lib/es2018.regexp.d.ts @@ -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; } \ No newline at end of file