UNPKG

@plastic-ant/lightcast-api

Version:

An unofficial helper package for accessing the Lightcast API endpoints

15 lines (14 loc) 540 B
import { LightcastAPIClient } from "../.."; import type { QueryParameters } from "./common-types"; import type { Response } from "../common-types"; declare const _default: (client: LightcastAPIClient) => { /** * * @param body * @param params * @returns * @see API docs {@link https://docs.lightcast.dev/apis/canada-job-postings#post-timeseries} */ timeseries: <R = Response, B = unknown>(body: B, params?: QueryParameters) => Promise<import("axios").AxiosResponse<R, any>>; }; export default _default;