MCPcopy Create free account
hub / github.com/firebase/quickstart-js / Post

Interface Post

database/scripts/main.ts:111–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109let listeningFirebaseRefs: Query[] = [];
110
111interface 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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected