Skip to content

Commit 1862342

Browse files
update typo in interface name (#1138)
FireabseErrorInterface -> FirebaseErrorInterface
1 parent 8ae44ce commit 1862342

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils/error.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* limitations under the License.
1616
*/
1717

18-
import { FirebaseError as FireabseErrorInterface } from '../firebase-namespace-api';
18+
import { FirebaseError as FirebaseErrorInterface } from '../firebase-namespace-api';
1919
import { deepCopy } from '../utils/deep-copy';
2020

2121
/**
@@ -39,7 +39,7 @@ interface ServerToClientCode {
3939
* @param {ErrorInfo} errorInfo The error information (code and message).
4040
* @constructor
4141
*/
42-
export class FirebaseError extends Error implements FireabseErrorInterface {
42+
export class FirebaseError extends Error implements FirebaseErrorInterface {
4343
constructor(private errorInfo: ErrorInfo) {
4444
super(errorInfo.message);
4545

0 commit comments

Comments
 (0)