curlyRule.d.ts 383 B

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