frontend/.pnpm-store/v3/files/55/058252f9a3ff6bb810038d895dee21d141ff4f1f3037c12a59498e703ff8179a6ac30086e56d92be1951ebab7013b1db5e23e8969d10214f51c3f2e1d74105

9 lines
326 B
Plaintext

/// <reference types="node" resolution-mode="require"/>
import type { Readable } from 'node:stream';
type FormData = {
getBoundary: () => string;
getLength: (callback: (error: Error | null, length: number) => void) => void;
} & Readable;
export default function isFormData(body: unknown): body is FormData;
export {};