* MM-23848 consolidate store, upgrade mmkv and fix logout * Feedback review * Add store.ts to modulesPath
17 lines
No EOL
380 B
TypeScript
17 lines
No EOL
380 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import * as redux from 'redux';
|
|
import {Persistor} from 'redux-persist';
|
|
|
|
class Store {
|
|
redux: redux.Store | null;
|
|
persistor: Persistor | null;
|
|
|
|
constructor() {
|
|
this.redux = null;
|
|
this.persistor = null;
|
|
}
|
|
}
|
|
|
|
export default new Store(); |