UNPKG

263 BTypeScriptView Raw
1export interface SourceLoc {
2 line: number;
3 col: number;
4}
5export interface SourceBlock {
6 startBody: SourceLoc;
7 endBody: SourceLoc;
8 startLoc: SourceLoc;
9 endLoc: SourceLoc;
10}
11export interface LocationsMap {
12 [key: string]: SourceBlock;
13}