Skip to content

⬅️ Back to Table of Contents

📄 literal-type1.ts

📊 Analysis Summary

Metric Count
📑 Type Aliases 3

📚 Table of Contents

🛠️ File Location:

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

Type Aliases

Color

type Color = 'red' | 'blue';

Quantity

type Quantity = 'one' | 'two';

SeussFish

type SeussFish = `${Quantity | Color} fish`;