* Registers functions to listen to bundle loading progress events. * @param next * Called when there is a progress update from bundle loading. Typically `next` calls occur * each time a Firestore document is loaded from the bundle. * @param error * Called when an error
(
next?: (progress: LoadBundleTaskProgress) => any,
error?: (error: Error) => any,
complete?: () => void
)
| 8657 | * Called when the loading task is complete. |
| 8658 | */ |
| 8659 | onProgress( |
| 8660 | next?: (progress: LoadBundleTaskProgress) => any, |
| 8661 | error?: (error: Error) => any, |
| 8662 | complete?: () => void |
no outgoing calls
no test coverage detected