oneLineRule.d.ts 440 Bytes
Newer Older
jatuporn Tonggasem's avatar
jatuporn Tonggasem committed
1 2 3 4 5 6 7 8 9 10 11
import * as ts from "typescript";
import * as Lint from "../index";
export declare class Rule extends Lint.Rules.AbstractRule {
    static metadata: Lint.IRuleMetadata;
    static BRACE_FAILURE_STRING: string;
    static CATCH_FAILURE_STRING: string;
    static ELSE_FAILURE_STRING: string;
    static FINALLY_FAILURE_STRING: string;
    static WHITESPACE_FAILURE_STRING: string;
    apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
}