Skip to content

⬅️ Back to Table of Contents

📄 parameter-properties.ts

📊 Analysis Summary

Metric Count
📊 Variables & Constants 3
📑 Type Aliases 1

📚 Table of Contents

🛠️ File Location:

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

Variables & Constants

Name Type Kind Value Exported
outer 1 const 1
A typeof A const `class {
constructor(
private a,
private b = 1,
private c = a,
public d = outer,
public e,
readonly f: Outer,
) {
a;
}
}`
unresovled any const e

Type Aliases

Outer

type Outer = 1;