UNPKG

smart-react-components

Version:

React UI library, wide variety of editable ready to use Styled and React components.

21 lines (20 loc) 565 B
import { Url, CancelCallback } from "../types/router"; export declare const setUrl: (url: Url) => { type: string; payload: Url; }; export declare const setNewUrl: (newUrl: Url, key: string) => { type: string; payload: Url; key: string; }; export declare const setCancelCallback: (callback: CancelCallback, key: string) => { type: string; payload: CancelCallback; key: string; }; export declare const setPercentage: (percentage: number, key: string) => { type: string; payload: number; key: string; };