Skip to content

Instantly share code, notes, and snippets.

@lenivene
Created May 13, 2021 17:47
Show Gist options
  • Save lenivene/90c1a2dfd484fdd9c09367f7e14e94f0 to your computer and use it in GitHub Desktop.
Save lenivene/90c1a2dfd484fdd9c09367f7e14e94f0 to your computer and use it in GitHub Desktop.
Extend attributes schema mongoose with _id
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