Skip to content

⬅️ Back to Table of Contents

📄 type3.ts

📊 Analysis Summary

Metric Count
📑 Type Aliases 2

📚 Table of Contents

🛠️ File Location:

📂 packages/scope-manager/tests/fixtures/type-declaration/type3.ts

Type Aliases

T

type T = 1;

A

type A = {
  b: string;
  c: T;
};