import { NodeTypes } from "../constants";
import { SourceLocation } from "./source-location";
import { Range } from "./range";
export interface BaseNode {
    type: NodeTypes;
    range: Range;
    loc: SourceLocation;
}
