1234567891011121314151617181920212223242526272829303132 |
- import { PrefixedFirebaseError } from '../utils/error';
- export declare const APP_CHECK_ERROR_CODE_MAPPING: {
- [key: string]: AppCheckErrorCode;
- };
- export type AppCheckErrorCode = 'aborted' | 'invalid-argument' | 'invalid-credential' | 'internal-error' | 'permission-denied' | 'unauthenticated' | 'not-found' | 'app-check-token-expired' | 'unknown-error';
- export declare class FirebaseAppCheckError extends PrefixedFirebaseError {
- constructor(code: AppCheckErrorCode, message: string);
- }
|