Skip to content

⬅️ Back to Table of Contents

📄 parameter-properties.ts

📊 Analysis Summary

Metric Count
🧱 Classes 1
📊 Variables & Constants 2
📑 Type Aliases 1

📚 Table of Contents

🛠️ File Location:

📂 packages/scope-manager/tests/fixtures/class/declaration/parameter-properties.ts

Variables & Constants

Name Type Kind Value Exported
outer 1 const 1
unresovled any const e

Classes

A

Class Code
class A {
  constructor(
    private a,
    private b = 1,
    private c = a,
    public d = outer,
    public e,
    readonly f: Outer,
  ) {
    a;
  }
}

Type Aliases

Outer

type Outer = 1;