Skip to content

⬅️ Back to Table of Contents

📄 conditional5.ts

📊 Analysis Summary

Metric Count
📑 Type Aliases 1

📚 Table of Contents

🛠️ File Location:

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

Type Aliases

Test<U>

type Test<U> = U extends (arg: { [k: string]: (arg2: infer I) => void }) => void
  ? I
  : never;