Open5
FirebaesのCloudFunctionsをTypeScriptで書く時のメモ
環境構築
functionsフォルダでnpm installしよう
Unityでエミュレータ接続はできるのか?
できそうサンプル実行
export const helloWorld = functions.https.onRequest((request, response) => {
functions.logger.info("Hello logs!", {structuredData: true});
response.send("Hello from Firebase!");
});
firebase.firestore().settings({
ignoreUndefinedProperties: true,
})
TypeScriptにはtypeというものが存在して、これはC#でいうところのclassかと思ったらどうやらTypeScriptにもclassは存在するらしい。
typeは変数の宣言の集合くらいの認識なんだけどあってるかな