All possible states of a bundle.

interface BundleStates {
    ACTIVE: 32;
    INSTALLED: 2;
    RESOLVED: 4;
    RESOLVING: 64;
    STARTING: 8;
    STOPPING: 16;
    UNINSTALLED: 1;
}

Properties

ACTIVE: 32

Bundle is active (started).

INSTALLED: 2

Bundle is installed.

RESOLVED: 4

Bundle is resolved (The JavaScript files are loaded).

RESOLVING: 64

Bundle is currently resolving (The JavaScript files are loading).

STARTING: 8

Bundle is starting.

STOPPING: 16

Bundle is stopping.

UNINSTALLED: 1

Bundle is no longer installed.