UNPKG

698 BTypeScriptView Raw
1export declare const UPDATE_SCROLL_TOP = "@@redux-devtools-log-monitor/UPDATE_SCROLL_TOP";
2interface UpdateScrollTopAction {
3 type: typeof UPDATE_SCROLL_TOP;
4 scrollTop: number;
5}
6export declare function updateScrollTop(scrollTop: number): UpdateScrollTopAction;
7export declare const START_CONSECUTIVE_TOGGLE = "@@redux-devtools-log-monitor/START_CONSECUTIVE_TOGGLE";
8interface StartConsecutiveToggleAction {
9 type: typeof START_CONSECUTIVE_TOGGLE;
10 id: number | null;
11}
12export declare function startConsecutiveToggle(id: number | null): StartConsecutiveToggleAction;
13export declare type LogMonitorAction = UpdateScrollTopAction | StartConsecutiveToggleAction;
14export {};