Skip to content

⬅️ Back to Table of Contents

📄 spec.ts

📊 Analysis Summary

Metric Count
📦 Imports 2
📐 Interfaces 1

📚 Table of Contents

🛠️ File Location:

📂 packages/ast-spec/src/token/IdentifierToken/spec.ts

📦 Imports

Name Source
AST_TOKEN_TYPES ../../ast-token-types
BaseToken ../../base/BaseToken

Interfaces

IdentifierToken

Interface Code
export interface IdentifierToken extends BaseToken {
  type: AST_TOKEN_TYPES.Identifier;
}

Properties

Name Type Optional Description
type AST_TOKEN_TYPES.Identifier