- HighlightApiFp(
configuration?: Configuration,
): {
getAllHighlights(
page?: number,
perpage?: number,
options?: RawAxiosRequestConfig,
): Promise<
(
axios?: AxiosInstance,
basePath?: string,
) => AxiosPromise<GetAllHighlightsResponse>,
>;
getHighlightsInCollection(
collectionId: number,
page?: number,
perpage?: number,
options?: RawAxiosRequestConfig,
): Promise<
(
axios?: AxiosInstance,
basePath?: string,
) => AxiosPromise<GetHighlightsInCollectionResponse>,
>;
getRaindrop(
id: number,
options?: RawAxiosRequestConfig,
): Promise<
(
axios?: AxiosInstance,
basePath?: string,
) => AxiosPromise<GetRaindropResponse>,
>;
updateRaindrop(
id: number,
body?: object,
options?: RawAxiosRequestConfig,
): Promise<
(
axios?: AxiosInstance,
basePath?: string,
) => AxiosPromise<UpdateRaindropResponse>,
>;
} getAllHighlights:function
getHighlightsInCollection:function
getRaindrop:function
updateRaindrop:function
HighlightApi - functional programming interface
Export