/** * @typedef {{ * line: number * column: number * }} Pos */ /** * @typedef {Pos & { * file: string * end?: Pos * alias?: string * toString(): string * withAlias(alias: string): Site * }} Site */ /** * @param {Pos} a * @param {Pos} b * @returns {number} - if negative, a comes before b, if positive b comes before a */ export function comparePos(a: Pos, b: Pos): number; export type Pos = { line: number; column: number; }; export type Site = Pos & { file: string; end?: Pos; alias?: string; toString(): string; withAlias(alias: string): Site; }; //# sourceMappingURL=Site.d.ts.map