typescript 5.5.0-dev.20240318 → 5.5.0-dev.20240320
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.array.d.ts +35 -0
- package/lib/lib.esnext.d.ts +2 -0
- package/lib/lib.esnext.regexp.d.ts +25 -0
- package/lib/tsc.js +227 -162
- package/lib/typescript.d.ts +13 -0
- package/lib/typescript.js +286 -184
- package/package.json +2 -2
package/lib/typescript.d.ts
CHANGED
|
@@ -10352,6 +10352,19 @@ declare namespace ts {
|
|
|
10352
10352
|
* when calling `getEditsForRefactor`.
|
|
10353
10353
|
*/
|
|
10354
10354
|
isInteractive?: boolean;
|
|
10355
|
+
/**
|
|
10356
|
+
* Range of code the refactoring will be applied to.
|
|
10357
|
+
*/
|
|
10358
|
+
range?: {
|
|
10359
|
+
start: {
|
|
10360
|
+
line: number;
|
|
10361
|
+
offset: number;
|
|
10362
|
+
};
|
|
10363
|
+
end: {
|
|
10364
|
+
line: number;
|
|
10365
|
+
offset: number;
|
|
10366
|
+
};
|
|
10367
|
+
};
|
|
10355
10368
|
}
|
|
10356
10369
|
/**
|
|
10357
10370
|
* A set of edits to make in response to a refactor action, plus an optional
|