@typescript-deploys/pr-build 5.5.0-pr-57847-24 → 5.5.0-pr-57421-28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/lib.es2022.regexp.d.ts +1 -1
- package/lib/lib.esnext.d.ts +0 -2
- package/lib/tsc.js +1385 -1039
- package/lib/typescript.d.ts +0 -13
- package/lib/typescript.js +1820 -1501
- package/package.json +2 -2
- package/lib/lib.esnext.array.d.ts +0 -35
- package/lib/lib.esnext.regexp.d.ts +0 -25
|
@@ -32,7 +32,7 @@ interface RegExpIndicesArray extends Array<[number, number]> {
|
|
|
32
32
|
|
|
33
33
|
interface RegExp {
|
|
34
34
|
/**
|
|
35
|
-
* Returns a Boolean value indicating the state of the hasIndices flag (d) used with a regular expression.
|
|
35
|
+
* Returns a Boolean value indicating the state of the hasIndices flag (d) used with with a regular expression.
|
|
36
36
|
* Default is false. Read-only.
|
|
37
37
|
*/
|
|
38
38
|
readonly hasIndices: boolean;
|
package/lib/lib.esnext.d.ts
CHANGED