mattermost-redux
Version:
Common code (API client, Redux stores, logic, utility functions) for building a Mattermost client
13 lines (12 loc) • 415 B
JavaScript
;
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
PLUGIN_STATE_NOT_RUNNING: 0,
PLUGIN_STATE_STARTING: 1,
PLUGIN_STATE_RUNNING: 2,
PLUGIN_STATE_FAILED_TO_START: 3,
PLUGIN_STATE_FAILED_TO_STAY_RUNNING: 4,
PLUGIN_STATE_STOPPING: 5,
};