astro-ghostcms/.pnpm-store/v3/files/e8/ad821ec7ef2a1f265ade685929c...

8 lines
214 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import type { FormDataLike } from "../FormDataLike.js";
/**
* Check if given object is FormData
*
* @param value an object to test
*/
export declare const isFormData: (value: unknown) => value is FormDataLike;