[go: nahoru, domu]

Skip to content
New issue

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

Convert FirebaseError to TypeScript #1521

Merged
merged 16 commits into from
Jul 23, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Assign properties in FirebaseError constructor in alphabetical order
  • Loading branch information
merlinnot committed Jul 17, 2019
commit c5684d8bba041716a6fa7a58946914e4b8adb614
4 changes: 2 additions & 2 deletions src/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ export class FirebaseError extends Error implements FirebaseErrorOptions {
) {
super();

this.message = message;
this.children = children;
this.context = context;
this.status = status;
this.exit = exit;
this.message = message;
this.original = original;
this.status = status;
}
}