From bd06aa2f50af2d1beb4867a97240c53da9fc80a3 Mon Sep 17 00:00:00 2001 From: Elad Zelingher Date: Mon, 11 Jul 2016 20:50:40 +0300 Subject: [PATCH] Fixing progress field --- autobahn/autobahn.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autobahn/autobahn.d.ts b/autobahn/autobahn.d.ts index 97837b52d0..7fd344f727 100644 --- a/autobahn/autobahn.d.ts +++ b/autobahn/autobahn.d.ts @@ -45,7 +45,7 @@ declare namespace autobahn { interface IInvocation { caller?: number; - progress?: boolean; + progress?: (args : any[], kwargs : any) => void; procedure: string; }