blob: ac23c59393e48001f823174d57427ff8b2c3775d (
plain)
1
2
3
4
5
6
7
8
9
10
|
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_NEVER: string;
static FAILURE_STRING_FORBIDDEN: string;
static FAILURE_STRING_ALWAYS: string;
apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
isEnabled(): boolean;
}
|