From dade09fe9d0b5205c4c2f5de9f185f64e59c701c Mon Sep 17 00:00:00 2001 From: HowardRichards Date: Fri, 29 Aug 2014 14:33:47 +0100 Subject: [PATCH] added any to options type Fixed failing run --- valerie/valerie.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/valerie/valerie.d.ts b/valerie/valerie.d.ts index 8e9d12988..abe5aea28 100644 --- a/valerie/valerie.d.ts +++ b/valerie/valerie.d.ts @@ -316,7 +316,7 @@ declare module Valerie { // - either parameter can be omitted and a clone of the other parameter will be returned // - the merge is shallow // - array properties are shallow cloned - mergeOptions(defaultOptions: ValidationOptions, options): ValidationOptions; + mergeOptions(defaultOptions: ValidationOptions, options:any): ValidationOptions; }