Summary: As per the title Reviewed By: jknoxville, passy Differential Revision: D16690303 fbshipit-source-id: fa78ea1e3f288249676d5a6423e5d0f0a6e427a4
14 lines
377 B
TypeScript
14 lines
377 B
TypeScript
/**
|
|
* Copyright 2018-present Facebook.
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
* @format
|
|
*/
|
|
import {Store} from '../reducers/index.js';
|
|
import {Logger} from '../fb-interfaces/Logger';
|
|
|
|
export type Dispatcher = (
|
|
store: Store,
|
|
logger: Logger,
|
|
) => (() => Promise<void>) | null | void;
|