36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
export declare enum NodeBuilderFlags {
|
|
None = 0,
|
|
NoTruncation = 1,
|
|
WriteArrayAsGenericType = 2,
|
|
GenerateNamesForShadowedTypeParams = 4,
|
|
UseStructuralFallback = 8,
|
|
ForbidIndexedAccessSymbolReferences = 16,
|
|
WriteTypeArgumentsOfSignature = 32,
|
|
UseFullyQualifiedType = 64,
|
|
UseOnlyExternalAliasing = 128,
|
|
SuppressAnyReturnType = 256,
|
|
WriteTypeParametersInQualifiedName = 512,
|
|
MultilineObjectLiterals = 1024,
|
|
WriteClassExpressionAsTypeLiteral = 2048,
|
|
UseTypeOfFunction = 4096,
|
|
OmitParameterModifiers = 8192,
|
|
UseAliasDefinedOutsideCurrentScope = 16384,
|
|
UseSingleQuotesForStringLiteralType = 268435456,
|
|
NoTypeReduction = 536870912,
|
|
UseInstantiationExpressions = 1073741824,
|
|
OmitThisParameter = 33554432,
|
|
WriteCallStyleSignature = 134217728,
|
|
AllowThisInObjectLiteral = 32768,
|
|
AllowQualifiedNameInPlaceOfIdentifier = 65536,
|
|
AllowAnonymousIdentifier = 131072,
|
|
AllowEmptyUnionOrIntersection = 262144,
|
|
AllowEmptyTuple = 524288,
|
|
AllowUniqueESSymbolType = 1048576,
|
|
AllowEmptyIndexInfoType = 2097152,
|
|
AllowNodeModulesRelativePaths = 67108864,
|
|
IgnoreErrors = 70221824,
|
|
InObjectTypeLiteral = 4194304,
|
|
InTypeAlias = 8388608,
|
|
InInitialEntityName = 16777216
|
|
}
|
|
//# sourceMappingURL=nodeBuilderFlags.enum.d.ts.map |