* Represents an array of matched values.
| 245 | * Represents an array of matched values. |
| 246 | */ |
| 247 | interface ExecArray extends RegExpExecArray, Array<string> { |
| 248 | /** |
| 249 | * Named capture groups are accessible as properties when the `namespacing` |
| 250 | * feature is not installed. |
| 251 | */ |
| 252 | [propName: string]: any; |
| 253 | |
| 254 | /** |
| 255 | * This is only present if the the `namespacing` feature is installed |
| 256 | * using the `XRegExp.install` method. |
| 257 | */ |
| 258 | groups?: NamedGroupsArray; |
| 259 | } |
| 260 | |
| 261 | /** |
| 262 | * An element in a `MatchChainArray` that specifies a regex and a backreference to pass forward. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…