UNPKG

@fal-ai/serverless-client

Version:

Deprecation note: this library has been deprecated in favor of @fal-ai/client

7 lines (6 loc) 290 B
import { ResponseHandler } from "./response"; type RequestOptions = { responseHandler?: ResponseHandler<any>; }; export declare function dispatchRequest<Input, Output>(method: string, targetUrl: string, input: Input, options?: RequestOptions & RequestInit): Promise<Output>; export {};