UNPKG

dots-wrapper

Version:

Digital Ocean v2 api wrapper - javascript - typescript - nodejs

11 lines (10 loc) 494 B
import { IContext, IResponse } from '../../types'; import { IGenAiIndexingJob } from '..'; export interface IGetIndexingJobApiResponse { indexing_job: IGenAiIndexingJob; } export interface IGetIndexingJobApiRequest { indexing_job_uuid: string; } export type GetIndexingJobResponse = IResponse<IGetIndexingJobApiResponse>; export declare const getIndexingJob: ({ httpClient }: IContext) => ({ indexing_job_uuid }: IGetIndexingJobApiRequest) => Promise<Readonly<GetIndexingJobResponse>>;