Skip to content

Commit 210afe3

Browse files
cleanup yarn.lock
1 parent bd9a9a7 commit 210afe3

2 files changed

Lines changed: 345 additions & 2697 deletions

File tree

x-pack/plugins/infra/public/containers/logs/log_entries/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66
import { useEffect, useState, useReducer, useCallback } from 'react';
77
import createContainer from 'constate';
8-
import { pick, throttle } from 'lodash';
8+
import { pick, throttle, DebouncedFunc } from 'lodash';
99
import { TimeKey, timeKeyIsBetween } from '../../../../common/time';
1010
import {
1111
LogEntriesResponse,
@@ -78,7 +78,7 @@ export interface LogEntriesStateParams {
7878
}
7979

8080
export interface LogEntriesCallbacks {
81-
fetchNewerEntries: () => Promise<TimeKey | null | undefined>;
81+
fetchNewerEntries: DebouncedFunc<() => Promise<TimeKey | null | undefined>>;
8282
checkForNewEntries: () => Promise<void>;
8383
}
8484
export const logEntriesInitialCallbacks = {

0 commit comments

Comments
 (0)