Я пытаюсь запросить документ из Firestore в Typescript:
Код в моем файле .ts:
const isFollowerBlockedByFollowee =
admin.firestore().collection('Users').doc(followeeUid).collection('ProfileInfo').doc(followeeUid)
.where('blocked', 'array-contains', [followerUid])
//the line below is the one which is causing the error
.get().then(snapshot => {
if ( !snapshot.exists) {
return false
} else if ( snapshot.exists ) {
return true
}
})
Я получаю следующую ошибку, вызванную кодом: ошибка TS7030 : Не все пути кода возвращают значение.
.get (). Then (снимок => {