import type { SourceLocation } from "estree";
import type { Range } from "./range";

export interface NodeOrTokenData {
  type: string;
  loc: SourceLocation;
  range: Range;
}
