UNPKG

got

Version:

Human-friendly and powerful HTTP request library for Node.js

9 lines (8 loc) 305 B
/// <reference types="node" /> import { Readable } from 'stream'; interface FormData extends Readable { getBoundary: () => string; getLength: (callback: (error: Error | null, length: number) => void) => void; } declare const _default: (body: unknown) => body is FormData; export default _default;