Skip to content

⬅️ Back to Table of Contents

📄 conditional-nested.ts

📊 Analysis Summary

Metric Count
📑 Type Aliases 1

📚 Table of Contents

🛠️ File Location:

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

Type Aliases

Test<T>

type Test<T> = T extends Array<infer U> ? U : T extends Set<infer U> ? U : never;