1
0
Fork 0

lint(rule): get rid of some anys

This commit is contained in:
ssube 2019-09-10 20:31:56 -05:00 committed by Sean Sube
parent 969bef1530
commit 80f2ea6521
1 changed files with 2 additions and 2 deletions

View File

@ -152,9 +152,9 @@ export interface RuleResult extends VisitorResult {
}
export class Rule implements RuleData, Visitor<RuleResult> {
public readonly check: any;
public readonly check: ValidateFunction;
public readonly desc: string;
public readonly filter?: any;
public readonly filter?: ValidateFunction;
public readonly level: LogLevel;
public readonly name: string;
public readonly select: string;