@ewb/reach
Version:
Resource and Fetch stuff
8 lines (7 loc) • 347 B
TypeScript
import { IReachBody, IReachOptions } from '../types';
export declare class ReachBody {
static get(opts: IReachOptions): FormData | string | undefined;
static parse(opts: IReachOptions): string | FormData;
static multipartForm(body: IReachBody, fileKeys?: string[]): FormData;
static encodedForm(body: IReachBody): string;
}