import { AuthorizationOptions } from "./types"; export default function oAuthV1Request({ baseURL, method, params, data, oAuthOptions, }: AuthorizationOptions): { method: "GET" | "PUT" | "POST" | "DELETE"; baseURL: string; params: Record; data: string; headers: { Authorization: string; "Content-Type": "application/x-www-form-urlencoded"; "Content-Length": number; }; };