mattermost-redux
Version:
Common code (API client, Redux stores, logic, utility functions) for building a Mattermost client
11 lines (10 loc) • 335 B
text/typescript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
export 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,
};