UNPKG

react-render-order-fixer

Version:

This library allows your react component to be re-rendered where it is needed.

7 lines (6 loc) 199 B
export interface ActionEmitter { addListener(fn: () => void): any; removeListener(fn: () => void): any; fireAction(): any; } export default function createActionEmitter(): ActionEmitter;