blob: d35e1e5ad4064b2083d3d675b909127e77412fc7 (
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_MISSING: string;
static FAILURE_STRING_INVALID: string;
apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
}
|