import type { Position } from "./position";

/** The source location of a node with start and end positions. */
export interface SourceLocation {
  start: Position;
  end: Position;
}
