aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tslint/lib/rules/noRedundantJsdocRule.d.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-12-10 21:51:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2017-12-10 21:51:33 +0100
commit0469abd4a9c9270a1fdc962969e36e63699af8b4 (patch)
treef9864d4a4148621378958794cbbfdc2393733283 /node_modules/tslint/lib/rules/noRedundantJsdocRule.d.ts
parent6947e79bbc258f7bc96af424ddb71a511f0c15a3 (diff)
upgrade dependencies
Diffstat (limited to 'node_modules/tslint/lib/rules/noRedundantJsdocRule.d.ts')
-rw-r--r--node_modules/tslint/lib/rules/noRedundantJsdocRule.d.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/node_modules/tslint/lib/rules/noRedundantJsdocRule.d.ts b/node_modules/tslint/lib/rules/noRedundantJsdocRule.d.ts
new file mode 100644
index 000000000..5d51fdd37
--- /dev/null
+++ b/node_modules/tslint/lib/rules/noRedundantJsdocRule.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 FAILURE_STRING_REDUNDANT_TYPE: string;
+ static FAILURE_STRING_REDUNDANT_TAG(tagName: string): string;
+ static FAILURE_STRING_NO_COMMENT(tagName: string): string;
+ apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
+}