blob: 2a96c3409de2246e6b9155f35c70750f961e6b0d (
plain)
1
2
3
4
5
6
7
8
|
import * as ts from "typescript";
import * as Lint from "../index";
export declare class Rule extends Lint.Rules.AbstractRule {
static metadata: Lint.IRuleMetadata;
static FAILURE_STRING(actual: string, expected: string): string;
isEnabled(): boolean;
apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
}
|