/**
 * A tuple of two 0-based indices representing the start and end positions of a
 * node in the source code.
 */
export type Range = [number, number];
