diff options
Diffstat (limited to 'node_modules/tslint/lib/rules/objectLiteralKeyQuotesRule.d.ts')
-rw-r--r-- | node_modules/tslint/lib/rules/objectLiteralKeyQuotesRule.d.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/node_modules/tslint/lib/rules/objectLiteralKeyQuotesRule.d.ts b/node_modules/tslint/lib/rules/objectLiteralKeyQuotesRule.d.ts new file mode 100644 index 000000000..41a6e7c56 --- /dev/null +++ b/node_modules/tslint/lib/rules/objectLiteralKeyQuotesRule.d.ts @@ -0,0 +1,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[]; +} |