ts
db.ts
adds the server timestamp when the document is written to the DB.
add a server timestamp
await db.update({date: db.ts}, "users", "bob")
// equivalent firestore
await fb.collection("users").doc("bob").update({age: firebase.firestore.FieldValue.serverTimestamp()})