Skip to content

Commit

Permalink
cleanup yarn.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
patrykkopycinski committed Oct 2, 2020
1 parent bd9a9a7 commit 210afe3
Show file tree
Hide file tree
Showing 2 changed files with 345 additions and 2,697 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/
import { useEffect, useState, useReducer, useCallback } from 'react';
import createContainer from 'constate';
import { pick, throttle } from 'lodash';
import { pick, throttle, DebouncedFunc } from 'lodash';
import { TimeKey, timeKeyIsBetween } from '../../../../common/time';
import {
LogEntriesResponse,
Expand Down Expand Up @@ -78,7 +78,7 @@ export interface LogEntriesStateParams {
}

export interface LogEntriesCallbacks {
fetchNewerEntries: () => Promise<TimeKey | null | undefined>;
fetchNewerEntries: DebouncedFunc<() => Promise<TimeKey | null | undefined>>;
checkForNewEntries: () => Promise<void>;
}
export const logEntriesInitialCallbacks = {
Expand Down
Loading

0 comments on commit 210afe3

Please sign in to comment.