Skip to content

Commit

Permalink
fix: Allow standard BSON types to be used with
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed Aug 2, 2016
1 parent e850d5d commit 2b348a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Changes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface Changes {
$addToSet?: {
[property: string]: {
$each: BSONArray;
};
}|BSONType;
}

$push?: {
Expand All @@ -32,7 +32,7 @@ export interface Changes {
$each: BSONArray;
$slice?: number;
$position?: number;
}|BSONObject|BSONType;
}|BSONType;
};

$pull?: {
Expand Down

0 comments on commit 2b348a4

Please sign in to comment.