in src/providers/firestore.ts [105:117]
export function exampleDocumentSnapshot(): firestore.DocumentSnapshot {
return makeDocumentSnapshot(
{
aString: 'foo',
anObject: {
a: 'bar',
b: 'faz',
},
aNumber: 7,
},
'records/1234'
);
}