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
SyntheticProperty=1<<1,// Property in union or intersection type
30
+
SyntheticMethod=1<<2,// Method in union or intersection type
31
+
Readonly=1<<3,// Readonly transient symbol
32
+
ReadPartial=1<<4,// Synthetic property present in some but not all constituents
33
+
WritePartial=1<<5,// Synthetic property present in some but only satisfied by an index signature in others
34
+
HasNonUniformType=1<<6,// Synthetic property with non-uniform type in constituents
35
+
HasLiteralType=1<<7,// Synthetic property with at least one literal type in constituents
36
+
ContainsPublic=1<<8,// Synthetic property with public constituent(s)
37
+
ContainsProtected=1<<9,// Synthetic property with protected constituent(s)
38
+
ContainsPrivate=1<<10,// Synthetic property with private constituent(s)
39
+
ContainsStatic=1<<11,// Synthetic property with static constituent(s)
40
+
Late=1<<12,// Late-bound symbol for a computed property with a dynamic name
41
+
ReverseMapped=1<<13,// Property of reverse-inferred homomorphic mapped type
42
+
OptionalParameter=1<<14,// Optional parameter
43
+
RestParameter=1<<15,// Rest parameter
44
+
DeferredType=1<<16,// Calculation of the type of this symbol is deferred due to processing costs, should be fetched with `getTypeOfSymbolWithDeferredType`
45
+
HasNeverType=1<<17,// Synthetic property with at least one never type in constituents
46
+
Mapped=1<<18,// Property of mapped type
47
+
StripOptional=1<<19,// Strip optionality in mapped property
0 commit comments