Skip to content

⬅️ Back to Table of Contents

📄 interface-type.ts

📊 Analysis Summary

Metric Count
📐 Interfaces 2

📚 Table of Contents

🛠️ File Location:

📂 packages/parser/tests/fixtures/scope-analysis/interface-type.ts

Interfaces

C<T = any>

Interface Code
interface C<T = any> {}

R<T extends C>

Interface Code
interface R<T extends C> {
  foo: C;
}

Properties

Name Type Optional Description
foo C