UNPKG

@lenne.tech/multer-gridfs-storage

Version:
14 lines (13 loc) 280 B
import { ObjectId } from "mongodb"; export interface GridFile { _id: ObjectId; filename: string; metadata: Document; contentType: string; chunkSize: number; bucketName: string; uploadDate: Date; md5: string; size: number; length: number; }