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:
John Knox
2019-08-09 04:50:48 -07:00
committed by Facebook Github Bot
parent 7a594cf456
commit cff023150e
2 changed files with 4 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ import tracking from './tracking';
import server from './server';
import notifications from './notifications';
import plugins from './plugins';
import user from './user';
import user from './user.tsx';
import type {Logger} from '../fb-interfaces/Logger.js';
import type {Store} from '../reducers/index.tsx';

View File

@@ -5,9 +5,9 @@
* @format
*/
import type {Store} from '../reducers/index.tsx';
import type {Logger} from '../fb-interfaces/Logger.js';
import {login} from '../reducers/user.tsx';
import {Store} from '../reducers/index';
import {Logger} from '../fb-interfaces/Logger.js';
import {login} from '../reducers/user';
import {getUser, logoutUser} from '../fb-stubs/user';
export default (store: Store, logger: Logger) => {