Skip to content

⬅️ Back to Table of Contents

📄 literal-type2.ts

📊 Analysis Summary

Metric Count
📑 Type Aliases 2

📚 Table of Contents

🛠️ File Location:

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

Type Aliases

EnthusiasticGreeting<T extends string extends string>

type EnthusiasticGreeting<T extends string extends string> = `${Uppercase<T>} - ${Lowercase<T>} - ${Capitalize<T>} - ${Uncapitalize<T>}`;

HELLO

type HELLO = EnthusiasticGreeting<'heLLo'>;