aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tslint/lib/test/lintError.d.ts
blob: c00b4b5353d6abbefee0a7db1a687063a3b5197a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { Error } from "../error";
export interface PositionInFile {
    line: number;
    col: number;
}
export interface LintError {
    startPos: PositionInFile;
    endPos: PositionInFile;
    message: string;
}
export declare function errorComparator(err1: LintError, err2: LintError): number;
export declare function lintSyntaxError(message: string): Error;