@jjdenhertog/plex-music-search
Version:
Library to find tracks in your Plex Library
8 lines (7 loc) • 469 B
TypeScript
import { AxiosRequestConfig } from "axios";
export declare const AxiosRequest: {
get<T>(url: string, token: string, config?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<T, any>>;
post<T>(url: string, token: string): Promise<import("axios").AxiosResponse<T, any>>;
put<T>(url: string, token: string): Promise<import("axios").AxiosResponse<T, any>>;
delete<T>(url: string, token: string): Promise<import("axios").AxiosResponse<T, any>>;
};