Skip to content

⬅️ Back to Table of Contents

📄 Literal.ts

📊 Analysis Summary

Metric Count
📦 Imports 6
📑 Type Aliases 1

📚 Table of Contents

🛠️ File Location:

📂 packages/ast-spec/src/unions/Literal.ts

📦 Imports

Name Source
BigIntLiteral ../expression/literal/BigIntLiteral/spec
BooleanLiteral ../expression/literal/BooleanLiteral/spec
NullLiteral ../expression/literal/NullLiteral/spec
NumberLiteral ../expression/literal/NumberLiteral/spec
RegExpLiteral ../expression/literal/RegExpLiteral/spec
StringLiteral ../expression/literal/StringLiteral/spec

Type Aliases

Literal

type Literal = | BigIntLiteral
  | BooleanLiteral
  | NullLiteral
  | NumberLiteral
  | RegExpLiteral
  | StringLiteral;