📜  firebase 打字稿代码示例

📅  最后修改于: 2022-03-11 14:48:34.843000             🧑  作者: Mango

代码示例1
npm i firebase

//then you can perform the operations you need with yout database,
//for example:
storeMembers(members: Club[]) {
      return this.http.get('https://.firebaseio.com/members.json', members);
  }