123456789101112131415161718192021 |
- import { PrefixedFirebaseError } from '../utils/error';
- export type SecurityRulesErrorCode = 'already-exists' | 'authentication-error' | 'internal-error' | 'invalid-argument' | 'invalid-server-response' | 'not-found' | 'resource-exhausted' | 'service-unavailable' | 'unknown-error';
- export declare class FirebaseSecurityRulesError extends PrefixedFirebaseError {
- constructor(code: SecurityRulesErrorCode, message: string);
- }
|