initial commit: basic flow errors

This commit is contained in:
Ben Styles
2017-04-04 17:58:20 +01:00
parent 34746c22c2
commit 5acea6d218
10 changed files with 93 additions and 28 deletions

View File

@@ -21,3 +21,13 @@ declare type GoogleApiAvailabilityType = {
isUserResolvableError?: boolean,
error?: string
};
declare class FirebaseError {
message: string,
name: string,
code: string,
stack: string,
path: string,
details: string,
modifiers: string
};