var db = firebase.firestore(); var batch = db.batch() save(docs: any[]) { docs.forEach((doc) => { var docRef = db.collection("col").doc(); //automatically generate unique id batch.set(docRef, doc); }); return batch.commit(); }