trailingCommaRule.d.ts 270 B

1234567
  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_NEVER: string;
  5. static FAILURE_STRING_ALWAYS: string;
  6. apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
  7. }