noConstructorVarsRule.d.ts 372 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 FAILURE_STRING_PART: string;
  5. apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
  6. }
  7. export declare class NoConstructorVarsWalker extends Lint.RuleWalker {
  8. visitConstructorDeclaration(node: ts.ConstructorDeclaration): void;
  9. }