interface GridFSFile {
    _id: mongoose.mongo.BSON.ObjectId;
    aliases?: string[];
    chunkSize: number;
    contentType?: string;
    filename: string;
    length: number;
    metadata?: mongoose.mongo.BSON.Document;
    uploadDate: Date;
}

Properties

aliases?: string[]
chunkSize: number
contentType?: string
filename: string
length: number
uploadDate: Date