oneLineRule.d.ts 355 B

123456789
  1. import * as ts from "typescript";
  2. import * as Lint from "../lint";
  3. export declare class Rule extends Lint.Rules.AbstractRule {
  4. static BRACE_FAILURE_STRING: string;
  5. static CATCH_FAILURE_STRING: string;
  6. static ELSE_FAILURE_STRING: string;
  7. static WHITESPACE_FAILURE_STRING: string;
  8. apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
  9. }