Files
flipper/src/dispatcher/types.tsx
Pritesh Nandgaonkar c43beb53d1 Migrate dispatcher index to tsx
Summary: As per the title

Reviewed By: jknoxville, passy

Differential Revision: D16690303

fbshipit-source-id: fa78ea1e3f288249676d5a6423e5d0f0a6e427a4
2019-08-09 07:56:55 -07:00

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;