UNPKG

@plastic-ant/lightcast-api

Version:

An unofficial helper package for accessing the Lightcast API endpoints

22 lines (21 loc) 831 B
import { LightcastAPIClient } from "../.."; import type { QueryParameters } from "./common-types"; import type { Response } from "../common-types"; declare const _default: (client: LightcastAPIClient) => { /** * * @param facet * @param body * @param params * @returns * * @see https://docs.lightcast.dev/apis/job-postings#post-distributions-distributionfacet */ byFacet: <R = Response, B = unknown>(facet: string, body: B, params?: QueryParameters) => Promise<import("axios").AxiosResponse<R, any>>; /** * Get a list of available distribution facets. * @see API docs {@link https://docs.lightcast.dev/apis/job-postings#get-distributions} */ listAllDimensions: <R_1 = Response>() => Promise<import("axios").AxiosResponse<R_1, any>>; }; export default _default;