UNPKG

@translated/lara

Version:

Official Lara SDK for JavaScript and Node.js

9 lines (8 loc) 464 B
import { type BaseURL, type ClientResponse, LaraClient, type MultiPartFile } from "./client"; /** @internal */ export declare class BrowserLaraClient extends LaraClient { private readonly baseUrl; constructor(baseUrl: BaseURL, accessKeyId: string, accessKeySecret: string); protected send(path: string, headers: Record<string, string>, body?: Record<string, any>): Promise<ClientResponse>; protected wrapMultiPartFile(file: MultiPartFile): File; }