You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ContainsPublic=1<<8,// Synthetic property with public constituent(s)
4902
4908
ContainsProtected=1<<9,// Synthetic property with protected constituent(s)
4903
4909
ContainsPrivate=1<<10,// Synthetic property with private constituent(s)
4904
-
ContainsStatic=1<<11,// Synthetic property with static constituent(s)
4905
-
Late=1<<12,// Late-bound symbol for a computed property with a dynamic name
4906
-
ReverseMapped=1<<13,// Property of reverse-inferred homomorphic mapped type
4907
-
OptionalParameter=1<<14,// Optional parameter
4908
-
RestParameter=1<<15,// Rest parameter
4909
-
DeferredType=1<<16,// Calculation of the type of this symbol is deferred due to processing costs, should be fetched with `getTypeOfSymbolWithDeferredType`
4910
-
HasNeverType=1<<17,// Synthetic property with at least one never type in constituents
4911
-
Mapped=1<<18,// Property of mapped type
4912
-
StripOptional=1<<19,// Strip optionality in mapped property
4910
+
ContainsFinal=1<<11,
4911
+
ContainsStatic=1<<12,// Synthetic property with static constituent(s)
4912
+
Late=1<<13,// Late-bound symbol for a computed property with a dynamic name
4913
+
ReverseMapped=1<<14,// Property of reverse-inferred homomorphic mapped type
4914
+
OptionalParameter=1<<15,// Optional parameter
4915
+
RestParameter=1<<16,// Rest parameter
4916
+
DeferredType=1<<17,// Calculation of the type of this symbol is deferred due to processing costs, should be fetched with `getTypeOfSymbolWithDeferredType`
4917
+
HasNeverType=1<<18,// Synthetic property with at least one never type in constituents
4918
+
Mapped=1<<19,// Property of mapped type
4919
+
StripOptional=1<<20,// Strip optionality in mapped property
0 commit comments