Skip to content

⬅️ Back to Table of Contents

📄 Position.ts

📊 Analysis Summary

Metric Count
📐 Interfaces 1

📚 Table of Contents

🛠️ File Location:

📂 packages/ast-spec/src/base/Position.ts

Interfaces

Position

Interface Code
export interface Position {
  /**
   * Column number on the line (0-indexed)
   */
  column: number;
  /**
   * Line number (1-indexed)
   */
  line: number;
}

Properties

Name Type Optional Description
column number
line number