Skip to content

⬅️ Back to Table of Contents

📄 scope.ts

📊 Analysis Summary

Metric Count
🔧 Functions 1
📊 Variables & Constants 3

📚 Table of Contents

🛠️ File Location:

📂 packages/scope-manager/tests/fixtures/functions/arrow/scope.ts

Variables & Constants

Name Type Kind Value Exported
i number let/var 0
j number let/var 20
unresolved any const j

Functions

arrow(): void

Code
() => {
  let i = 0;
  var j = 20;

  i;
}
  • Return Type: void