docs-devsite/firestore_.loadbundletaskprogress.md
Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference
{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}
Represents a progress update or a final state from loading bundles.
<b>Signature:</b>
export declare interface LoadBundleTaskProgress
| Property | Type | Description |
|---|---|---|
| bytesLoaded | number | How many bytes have been loaded. |
| documentsLoaded | number | How many documents have been loaded. |
| taskState | TaskState | Current task state. |
| totalBytes | number | How many bytes are in the bundle being loaded. |
| totalDocuments | number | How many documents are in the bundle being loaded. |
How many bytes have been loaded.
<b>Signature:</b>
bytesLoaded: number;
How many documents have been loaded.
<b>Signature:</b>
documentsLoaded: number;
Current task state.
<b>Signature:</b>
taskState: TaskState;
How many bytes are in the bundle being loaded.
<b>Signature:</b>
totalBytes: number;
How many documents are in the bundle being loaded.
<b>Signature:</b>
totalDocuments: number;