⬅️ Back to Table of Contents
📄 ScopeType.ts
📊 Analysis Summary
📚 Table of Contents
🛠️ File Location:
📂 packages/scope-manager/src/scope/ScopeType.ts
Enums
enum ScopeType
Enum Code
export enum ScopeType {
block = 'block',
catch = 'catch',
class = 'class',
classFieldInitializer = 'class-field-initializer',
classStaticBlock = 'class-static-block',
conditionalType = 'conditionalType',
for = 'for',
function = 'function',
functionExpressionName = 'function-expression-name',
functionType = 'functionType',
global = 'global',
mappedType = 'mappedType',
module = 'module',
switch = 'switch',
tsEnum = 'tsEnum',
tsModule = 'tsModule',
type = 'type',
with = 'with',
}
Members
Name |
Value |
Description |
block |
block |
|
catch |
catch |
|
class |
class |
|
classFieldInitializer |
class-field-initializer |
|
classStaticBlock |
class-static-block |
|
conditionalType |
conditionalType |
|
for |
for |
|
function |
function |
|
functionExpressionName |
function-expression-name |
|
functionType |
functionType |
|
global |
global |
|
mappedType |
mappedType |
|
module |
module |
|
switch |
switch |
|
tsEnum |
tsEnum |
|
tsModule |
tsModule |
|
type |
type |
|
with |
with |
|