Skip to content

Commit

Permalink
Revert: let _id and _rev be nullable.
Browse files Browse the repository at this point in the history
  • Loading branch information
nozzlegear committed Aug 28, 2017
1 parent f0cc61d commit 0689edf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -540,12 +540,12 @@ export interface CouchDoc {
/**
* The object's database id.
*/
_id: string;
_id?: string;

/**
* The object's database revision.
*/
_rev: string;
_rev?: string;
}

export interface PostPutCopyResponse {
Expand Down

0 comments on commit 0689edf

Please sign in to comment.