aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tslint/lib/rules/objectLiteralKeyQuotesRule.d.ts
blob: 41a6e7c561e84f556f57dc243bc9b02190323bbb (plain)
1
2
3
4
5
6
7
8
9
import * as ts from "typescript";
import * as Lint from "../index";
export declare class Rule extends Lint.Rules.AbstractRule {
    static metadata: Lint.IRuleMetadata;
    static INCONSISTENT_PROPERTY: string;
    static UNNEEDED_QUOTES(name: string): string;
    static UNQUOTED_PROPERTY(name: string): string;
    apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
}