UNPKG

448 BTypeScriptView Raw
1import * as Lint from "tslint";
2import * as ts from "typescript";
3/** Custom version of the standard file-name-casing rule, that allows for *multiple* casings.
4 * ref: https://github.com/palantir/tslint/blob/master/src/rules/fileNameCasingRule.ts
5 */
6export declare class Rule extends Lint.Rules.AbstractRule {
7 private static FAILURE_STRING;
8 private static stylizedNameForCasing;
9 apply(sourceFile: ts.SourceFile): Lint.RuleFailure[];
10}