mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
536 B
TypeScript
13 lines
536 B
TypeScript
// Type definitions for next-redux-saga 3.0
|
|
// Project: https://github.com/bmealhouse/next-redux-saga
|
|
// Definitions by: Leo Cavalcante <https://github.com/leocavalcante>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.0
|
|
|
|
import { ComponentType } from "react";
|
|
|
|
declare function nextReduxSaga<P = any>(arg: { async: boolean }): ((BaseComponent: ComponentType<P>) => ComponentType<P>);
|
|
declare function nextReduxSaga<P = any>(arg: ComponentType<P>): ComponentType<P>;
|
|
|
|
export = nextReduxSaga;
|