aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tslint/lib/rules/unifiedSignaturesRule.d.ts
blob: 0a461d4d2c3969a87354832151114cf406ca36ee (plain)
1
2
3
4
5
6
7
8
9
10
import * as ts from "typescript";
import * as Lint from "../index";
export declare class Rule extends Lint.Rules.AbstractRule {
    static metadata: Lint.IRuleMetadata;
    static FAILURE_STRING_OMITTING_SINGLE_PARAMETER(otherLine?: number): string;
    static FAILURE_STRING_OMITTING_REST_PARAMETER(otherLine?: number): string;
    static FAILURE_STRING_SINGLE_PARAMETER_DIFFERENCE(otherLine: number | undefined, type1: string, type2: string): string;
    private static FAILURE_STRING_START(otherLine?);
    apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
}