Skip to content

⬅️ Back to Table of Contents

📄 types-intersection-type.src.ts

📊 Analysis Summary

Metric Count
📑 Type Aliases 1

📚 Table of Contents

🛠️ File Location:

📂 packages/parser/tests/fixtures/scope-analysis/types-intersection-type.src.ts

Type Aliases

LinkedList<T>

type LinkedList<T> = T & { next: LinkedList<T> };