commentFormatRule.d.ts 305 B

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