%PDF- %PDF-
| Direktori : /usr/share/nodejs/got/dist/core/utils/ |
| Current File : //usr/share/nodejs/got/dist/core/utils/is-form-data.d.ts |
/// <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;