From 88b290859e59a22a42bee72e33b50bc899ef62d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Nguyen?= Date: Thu, 24 Sep 2015 08:37:48 +0200 Subject: [PATCH] Changed IQueryParam to accept any Parameterized queries can actually work with various types --- documentdb-server/documentdb-server.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentdb-server/documentdb-server.d.ts b/documentdb-server/documentdb-server.d.ts index 225a1a0cca..e878960b1c 100644 --- a/documentdb-server/documentdb-server.d.ts +++ b/documentdb-server/documentdb-server.d.ts @@ -508,7 +508,7 @@ interface IQueryParam { /** Name to use in the query */ name: string; /** Value of the parameter */ - value: string; + value: any; } /** List of error codes returned by database operations in the RequestCallback and FeedCallback. See the corresponding error message for more details. */