semicolonRule.d.ts 360B

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_MISSING: string;
  6. static FAILURE_STRING_COMMA: string;
  7. static FAILURE_STRING_UNNECESSARY: string;
  8. apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
  9. }