Skip to content

Commit

Permalink
Fixed Schema definition to allow restrictive custom _id fields
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed Apr 29, 2015
1 parent 193b763 commit 2b0ff8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
export = ISchema;

interface ISchema {
_id: boolean;
_id: boolean | any;
[key:string]: any;
}

0 comments on commit 2b0ff8b

Please sign in to comment.