From 60b04cfffea80d3687792e45d1450a1778e6b312 Mon Sep 17 00:00:00 2001 From: Tim Perry Date: Wed, 13 Jan 2016 17:17:37 +0100 Subject: [PATCH] Make property params non-options (whoops) --- calq/calq.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calq/calq.d.ts b/calq/calq.d.ts index 390124c1e..331b89720 100644 --- a/calq/calq.d.ts +++ b/calq/calq.d.ts @@ -21,7 +21,7 @@ declare module Calq trackPageView(action?:string):void; setGlobalProperty(name:string, value:any):void; - setGlobalProperty(params?: {[index:string]: any}):void; + setGlobalProperty(params: {[index:string]: any}):void; } interface User