@plastic-ant/lightcast-api
Version:
An unofficial helper package for accessing the Lightcast API endpoints
6 lines (5 loc) • 343 B
TypeScript
import { LightcastAPIClient } from "../..";
import type { QueryParameters } from "./common-types";
import type { Response } from "../common-types";
declare const _default: (client: LightcastAPIClient) => <R = Response, B = unknown>(body: B, params?: QueryParameters) => Promise<import("axios").AxiosResponse<R, any>>;
export default _default;