1enum ScopeType { 2 block = 'block', 3 catch = 'catch', 4 class = 'class', 5 conditionalType = 'conditionalType', 6 for = 'for', 7 function = 'function', 8 functionExpressionName = 'function-expression-name', 9 functionType = 'functionType', 10 global = 'global', 11 mappedType = 'mappedType', 12 module = 'module', 13 switch = 'switch', 14 tsEnum = 'tsEnum', 15 tsModule = 'tsModule', 16 type = 'type', 17 with = 'with', 18} 19 20export { ScopeType }; 21