wallet-core/node_modules/tslint/lib/rules/objectLiteralKeyQuotesRule.d.ts

10 lines
373 B
TypeScript
Raw Normal View History

2017-05-28 00:38:50 +02:00
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[];
}