We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'd like to define types of things in my firebase repo. DataSnapshot.val() returns any.
DataSnapshot.val()
any
call .val on a DataSnapshot
.val
DataSnapshot
interface DataSnapshot<S> { child(path: string): firebase.database.DataSnapshot<any>; exists(): boolean; exportVal(): S; forEach(action: (a: firebase.database.DataSnapshot<S>) => boolean): boolean; getPriority(): string | number | null; hasChild(path: string): boolean; hasChildren(): boolean; key: string | null; numChildren(): number; ref: firebase.database.Reference; toJSON(): Object | null; val(): S; }
The text was updated successfully, but these errors were encountered:
Hmmm this issue does not seem to follow the issue template. Make sure you provide all the required information.
Sorry, something went wrong.
This seems like a great potential PR!
No branches or pull requests
Describe the problem
I'd like to define types of things in my firebase repo.
DataSnapshot.val()
returnsany
.Steps to reproduce:
call
.val
on aDataSnapshot
Potential Fix
The text was updated successfully, but these errors were encountered: