typescript 5.3.0-dev.20231025 → 5.3.0-dev.20231026
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/tsc.js +443 -391
- package/lib/tsserver.js +546 -494
- package/lib/typescript.d.ts +26 -25
- package/lib/typescript.js +546 -494
- package/lib/typingsInstaller.js +108 -85
- package/package.json +2 -2
package/lib/typescript.d.ts
CHANGED
|
@@ -4752,32 +4752,32 @@ declare namespace ts {
|
|
|
4752
4752
|
}
|
|
4753
4753
|
enum ModifierFlags {
|
|
4754
4754
|
None = 0,
|
|
4755
|
-
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
|
|
4759
|
-
|
|
4760
|
-
|
|
4761
|
-
|
|
4762
|
-
|
|
4763
|
-
|
|
4764
|
-
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
|
|
4768
|
-
|
|
4769
|
-
|
|
4770
|
-
|
|
4771
|
-
|
|
4772
|
-
|
|
4755
|
+
Public = 1,
|
|
4756
|
+
Private = 2,
|
|
4757
|
+
Protected = 4,
|
|
4758
|
+
Readonly = 8,
|
|
4759
|
+
Override = 16,
|
|
4760
|
+
Export = 32,
|
|
4761
|
+
Abstract = 64,
|
|
4762
|
+
Ambient = 128,
|
|
4763
|
+
Static = 256,
|
|
4764
|
+
Accessor = 512,
|
|
4765
|
+
Async = 1024,
|
|
4766
|
+
Default = 2048,
|
|
4767
|
+
Const = 4096,
|
|
4768
|
+
In = 8192,
|
|
4769
|
+
Out = 16384,
|
|
4770
|
+
Decorator = 32768,
|
|
4771
|
+
Deprecated = 65536,
|
|
4772
|
+
HasComputedJSDocModifiers = 268435456,
|
|
4773
4773
|
HasComputedFlags = 536870912,
|
|
4774
|
-
AccessibilityModifier =
|
|
4775
|
-
ParameterPropertyModifier =
|
|
4776
|
-
NonPublicAccessibilityModifier =
|
|
4777
|
-
TypeScriptModifier =
|
|
4778
|
-
ExportDefault =
|
|
4779
|
-
All =
|
|
4780
|
-
Modifier =
|
|
4774
|
+
AccessibilityModifier = 7,
|
|
4775
|
+
ParameterPropertyModifier = 31,
|
|
4776
|
+
NonPublicAccessibilityModifier = 6,
|
|
4777
|
+
TypeScriptModifier = 28895,
|
|
4778
|
+
ExportDefault = 2080,
|
|
4779
|
+
All = 131071,
|
|
4780
|
+
Modifier = 98303,
|
|
4781
4781
|
}
|
|
4782
4782
|
enum JsxFlags {
|
|
4783
4783
|
None = 0,
|
|
@@ -6778,6 +6778,7 @@ declare namespace ts {
|
|
|
6778
6778
|
isUndefinedSymbol(symbol: Symbol): boolean;
|
|
6779
6779
|
isArgumentsSymbol(symbol: Symbol): boolean;
|
|
6780
6780
|
isUnknownSymbol(symbol: Symbol): boolean;
|
|
6781
|
+
getMergedSymbol(symbol: Symbol): Symbol;
|
|
6781
6782
|
getConstantValue(node: EnumMember | PropertyAccessExpression | ElementAccessExpression): string | number | undefined;
|
|
6782
6783
|
isValidPropertyAccess(node: PropertyAccessExpression | QualifiedName | ImportTypeNode, propertyName: string): boolean;
|
|
6783
6784
|
/** Follow all aliases to get the original symbol. */
|