React Native Firebase
    Preparing search index...

    A collection of properties that indicates the current tasks state.

    An event subscription is created via StorageTask.on().

    Use the exported types directly instead. FirebaseStorageTypes namespace is kept for backwards compatibility.

    firebase.storage.TaskEvent;
    
    interface TaskState {
        CANCELLED: "canceled";
        ERROR: "error";
        PAUSED: "paused";
        RUNNING: "running";
        SUCCESS: "success";
    }
    Index

    Properties

    CANCELLED: "canceled"

    Task has been cancelled by the user.

    ERROR: "error"

    An Error occurred, see TaskSnapshot.error for details.

    PAUSED: "paused"

    Task has been paused. Resume the task via StorageTask.resume().

    RUNNING: "running"

    Task is running. Pause the task via StorageTask.pause()

    SUCCESS: "success"

    Task has completed successfully.