(message: string, options?: any)
| 237 | * Return a promise that rejects with a FirebaseError. |
| 238 | */ |
| 239 | export function reject(message: string, options?: any): Promise<never> { |
| 240 | return Promise.reject(new FirebaseError(message, options)); |
| 241 | } |
| 242 | |
| 243 | /** An interface for the result of a successful Promise */ |
| 244 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
no outgoing calls
searching dependent graphs…