aboutsummaryrefslogtreecommitdiff
path: root/node_modules/tslint/lib/ruleLoader.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/tslint/lib/ruleLoader.d.ts')
-rw-r--r--node_modules/tslint/lib/ruleLoader.d.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/node_modules/tslint/lib/ruleLoader.d.ts b/node_modules/tslint/lib/ruleLoader.d.ts
new file mode 100644
index 000000000..0ce93785e
--- /dev/null
+++ b/node_modules/tslint/lib/ruleLoader.d.ts
@@ -0,0 +1,3 @@
+import { IOptions, IRule, RuleConstructor } from "./language/rule/rule";
+export declare function loadRules(ruleOptionsList: IOptions[], rulesDirectories?: string | string[], isJs?: boolean): IRule[];
+export declare function findRule(name: string, rulesDirectories?: string | string[]): RuleConstructor | undefined;