You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by gl...@apache.org on 2019/05/02 14:21:04 UTC

[couchdb-nano] branch master updated: Update nano.d.ts (#155)

This is an automated email from the ASF dual-hosted git repository.

glynnbird pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-nano.git


The following commit(s) were added to refs/heads/master by this push:
     new 5aab5c8  Update nano.d.ts (#155)
5aab5c8 is described below

commit 5aab5c8ce979c246a4bc939ddc4e0088a79b60cf
Author: Samriddhi <si...@gmail.com>
AuthorDate: Thu May 2 07:20:59 2019 -0700

    Update nano.d.ts (#155)
    
    Adding null to the MangoValue
---
 lib/nano.d.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/nano.d.ts b/lib/nano.d.ts
index 77ddd0a..5c165c5 100644
--- a/lib/nano.d.ts
+++ b/lib/nano.d.ts
@@ -1185,7 +1185,7 @@ declare namespace nano {
     update_seq: any;
   }
 
-  type MangoValue = number | string | Date | boolean;
+  type MangoValue = number | string | Date | boolean | null;
 
   // http://docs.couchdb.org/en/latest/api/database/find.html#selector-syntax
   interface MangoSelector {