wallet-core/node_modules/tslint/lib/rules/spaceWithinParensRule.d.ts
2017-08-14 05:02:09 +02:00

10 lines
379 B
TypeScript

import * as ts from "typescript";
import * as Lint from "../index";
export declare class Rule extends Lint.Rules.AbstractRule {
static metadata: Lint.IRuleMetadata;
static FAILURE_NO_SPACE: string;
static FAILURE_NEEDS_SPACE(count: number): string;
static FAILURE_NO_EXTRA_SPACE(count: number): string;
apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
}