From c765fad27f0b5444b29268765bc058c50b192a47 Mon Sep 17 00:00:00 2001 From: John Reilly Date: Fri, 21 Mar 2014 08:50:24 +0000 Subject: [PATCH] jQuery-validate: fix up --- jquery.validation/jquery.validation.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jquery.validation/jquery.validation.d.ts b/jquery.validation/jquery.validation.d.ts index 3b99514df..6e2451566 100644 --- a/jquery.validation/jquery.validation.d.ts +++ b/jquery.validation/jquery.validation.d.ts @@ -55,13 +55,13 @@ interface Validator * @param name The name of the class rule to add * @param rules The compound rules */ - addClassRules(name: string, rules: Object): ): void; + addClassRules(name: string, rules: Object): void; /** * Add a compound class method - useful to refactor common combinations of rules into a single class. * * @param rules A map of className-rules pairs */ - addClassRules(rules: any): void; + addClassRules(rules: Object): void; /** * Add a custom validation method. It must consist of a name (must be a legal javascript identifier), a javascript based function and a default string message. *