interface GridFSChunk {
    _id: mongoose.mongo.BSON.ObjectId;
    data: Buffer | Uint8Array;
    files_id: mongoose.mongo.BSON.ObjectId;
    n: number;
}

Properties

Properties

data: Buffer | Uint8Array
n: number