astro-ghostcms/.pnpm-store/v3/files/55/058252f9a3ff6bb810038d895de...

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 {};