* Represents an array of matched values if any.
| 228 | * Represents an array of matched values if any. |
| 229 | */ |
| 230 | interface MatchArray extends RegExpMatchArray, Array<string> { |
| 231 | /** |
| 232 | * Named capture groups are accessible as properties when the `namespacing` |
| 233 | * feature is not installed. |
| 234 | */ |
| 235 | [propName: string]: any; |
| 236 | |
| 237 | /** |
| 238 | * This is only present if the the `namespacing` feature is installed |
| 239 | * using the `XRegExp.install` method. |
| 240 | */ |
| 241 | groups?: NamedGroupsArray; |
| 242 | } |
| 243 | |
| 244 | /** |
| 245 | * Represents an array of matched values. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…