Skip to content

⬅️ Back to Table of Contents

📄 method-generics.ts

📊 Analysis Summary

Metric Count
📑 Type Aliases 2

📚 Table of Contents

🛠️ File Location:

📂 packages/scope-manager/tests/fixtures/type-declaration/signatures/method-generics.ts

Type Aliases

T

type T = 1;

A

type A = {
  a<U>(arg: T): U;
};