Skip to content

Commit 6434447

Browse files
committed
fix trailing spacel int
1 parent 6b30216 commit 6434447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4511,7 +4511,7 @@ namespace ts {
45114511
Transient = 1 << 25, // Transient symbol (created during type check)
45124512
Assignment = 1 << 26, // Assignment treated as declaration (eg `this.prop = 1`)
45134513
ModuleExports = 1 << 27, // Symbol for CommonJS `module` of `module.exports`
4514-
Deprecated = 1 << 28, // Symbol has Deprecated declaration tag (eg `@deprecated`)
4514+
Deprecated = 1 << 28, // Symbol has Deprecated declaration tag (eg `@deprecated`)
45154515
/* @internal */
45164516
All = FunctionScopedVariable | BlockScopedVariable | Property | EnumMember | Function | Class | Interface | ConstEnum | RegularEnum | ValueModule | NamespaceModule | TypeLiteral
45174517
| ObjectLiteral | Method | Constructor | GetAccessor | SetAccessor | Signature | TypeParameter | TypeAlias | ExportValue | Alias | Prototype | ExportStar | Optional | Transient | Deprecated,

0 commit comments

Comments
 (0)