importSpacingRule.d.ts 622B

12345678910111213141516
  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 ADD_SPACE_AFTER_IMPORT: string;
  6. static TOO_MANY_SPACES_AFTER_IMPORT: string;
  7. static ADD_SPACE_AFTER_STAR: string;
  8. static TOO_MANY_SPACES_AFTER_STAR: string;
  9. static ADD_SPACE_AFTER_FROM: string;
  10. static TOO_MANY_SPACES_AFTER_FROM: string;
  11. static ADD_SPACE_BEFORE_FROM: string;
  12. static TOO_MANY_SPACES_BEFORE_FROM: string;
  13. static NO_LINE_BREAKS: string;
  14. apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
  15. }