Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
kristenTian committed Jun 14, 2023
1 parent 71948e7 commit 152de35
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*/

import { schema } from '@osd/config-schema';
import { IRouter, Logger } from 'src/core/server';
import { IRouter, LegacyCallAPIOptions, Logger } from 'src/core/server';
import { SampleDatasetSchema } from '../lib/sample_dataset_registry_types';
import { createIndexName } from '../lib/create_index_name';
import {
Expand All @@ -44,7 +44,11 @@ const insertDataIntoIndex = (
dataIndexConfig: any,
index: string,
nowReference: string,
caller: (endpoint: string, clientParams?: Record<string, any>, options?: any) => Promise<any>,
caller: (
endpoint: string,
clientParams?: Record<string, any>,
options?: LegacyCallAPIOptions
) => Promise<any>,
logger: Logger
) => {
function updateTimestamps(doc: any) {
Expand Down

0 comments on commit 152de35

Please sign in to comment.