2.0.3 • Published 6 months ago

@types/redux-timeout v2.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/redux-timeout

Summary

This package contains type definitions for redux-timeout (https://github.com/gpfunk/redux-timeout).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/redux-timeout.

index.d.ts

// Type definitions for redux-timeout 2.0
// Project: https://github.com/gpfunk/redux-timeout
// Definitions by: Xavier Balloy <https://github.com/xballoy>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

import { AnyAction, Middleware } from 'redux';

/**
 * Add a timeout
 *
 * @param timeout Time in ms. Uses this value when initializing the setTimeout. This setTimeout will be cleared and recreated on any dispatches of action.
 * @param action Action or array of actions to watch for.
 * @param toCall Function to call when timeout is triggered.
 * @return Returns an add timeout action.
 */
export function addTimeout(timeout: number, action: string | string[], toCall: (...args: any) => void): AnyAction;

/**
 * Remove a timeout
 *
 * @param action Action or array of actions to remove from the watched list.
 * @return Returns a remove timeout action.
 */
export function removeTimeout(action: string | string[]): AnyAction;

/**
 * Creates a reduxTimeout middleware.
 *
 * @return Returns a middleware.
 */
export function reduxTimeout(): Middleware;

/**
 * Set as an action to watch and the middleware will watch for ANY actions that are dispatched.
 */
export const WATCH_ALL: string;

Additional Details

  • Last updated: Sun, 12 Dec 2021 20:31:08 GMT
  • Dependencies: @types/redux
  • Global values: none

Credits

These definitions were written by Xavier Balloy.