UNPKG

@flatfile/safe-api

Version:

Flatfile Safe API client with streaming capabilities

7 lines (6 loc) 275 B
import { SafeRequest, RetryOptions } from "./safe.request"; export declare abstract class GetRequest<T> extends SafeRequest<T> { retry: boolean; constructor(params: string | string[], query?: Record<string, any>, options?: RetryOptions); execute(): Promise<T>; }