Created
May 13, 2021 17:47
-
-
Save lenivene/90c1a2dfd484fdd9c09367f7e14e94f0 to your computer and use it in GitHub Desktop.
Extend attributes schema mongoose with _id
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { ObjectId } from "mongoose"; | |
export type AttributesWithObjectId<Attr> = { | |
_id: ObjectId | |
} & Attr |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment