Why Document is undefined after import from mongoose
I am writing a schema by mongoose in TypeScript, when I type import mongoosee, {Document} from 'mongoose', the mongoose is right there, but Document is undefined. But when I use import {Document} from 'mongoose', the Document can be imported, what's the problem?