| 109 | let listeningFirebaseRefs: Query[] = []; |
| 110 | |
| 111 | interface Post { |
| 112 | author: string | null; |
| 113 | uid: string; |
| 114 | body: string; |
| 115 | title: string; |
| 116 | starCount: number; |
| 117 | authorPic: string | null; |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Saves a new post to the Firebase DB. |
nothing calls this directly
no outgoing calls
no test coverage detected