maxLineLengthRule.d.ts 347B

12345678910
  1. import * as ts from "typescript";
  2. import * as Lint from "../index";
  3. export declare class Rule extends Lint.Rules.AbstractRule {
  4. static metadata: Lint.IRuleMetadata;
  5. static FAILURE_STRING_FACTORY(lineLimit: number): string;
  6. isEnabled(): boolean;
  7. apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
  8. private getRuleOptions();
  9. }