Convert user dispatcher to TS
Summary: Convert file to TS Reviewed By: passy Differential Revision: D16687861 fbshipit-source-id: 5aa88b169b915bc1abd71d312f510073ea78b0c7
This commit is contained in:
committed by
Facebook Github Bot
parent
7a594cf456
commit
cff023150e
@@ -13,7 +13,7 @@ import tracking from './tracking';
|
|||||||
import server from './server';
|
import server from './server';
|
||||||
import notifications from './notifications';
|
import notifications from './notifications';
|
||||||
import plugins from './plugins';
|
import plugins from './plugins';
|
||||||
import user from './user';
|
import user from './user.tsx';
|
||||||
|
|
||||||
import type {Logger} from '../fb-interfaces/Logger.js';
|
import type {Logger} from '../fb-interfaces/Logger.js';
|
||||||
import type {Store} from '../reducers/index.tsx';
|
import type {Store} from '../reducers/index.tsx';
|
||||||
|
|||||||
@@ -5,9 +5,9 @@
|
|||||||
* @format
|
* @format
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import type {Store} from '../reducers/index.tsx';
|
import {Store} from '../reducers/index';
|
||||||
import type {Logger} from '../fb-interfaces/Logger.js';
|
import {Logger} from '../fb-interfaces/Logger.js';
|
||||||
import {login} from '../reducers/user.tsx';
|
import {login} from '../reducers/user';
|
||||||
import {getUser, logoutUser} from '../fb-stubs/user';
|
import {getUser, logoutUser} from '../fb-stubs/user';
|
||||||
|
|
||||||
export default (store: Store, logger: Logger) => {
|
export default (store: Store, logger: Logger) => {
|
||||||
Reference in New Issue
Block a user