quotemarkRule.d.ts 298B

12345678
  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(actual: string, expected: string): string;
  6. apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
  7. }