@aracna/core - v1.5.0
    Preparing search index...

    Interface NodeFetch

    interface NodeFetch {
        Blob: {
            prototype: Blob;
            new (blobParts?: BlobPart[], options?: BlobPropertyBag): Blob;
        };
        default: any;
        File: {
            prototype: File;
            new (
                fileBits: BlobPart[],
                fileName: string,
                options?: FilePropertyBag,
            ): File;
        };
        FormData: {
            prototype: FormData;
            new (form?: HTMLFormElement, submitter?: HTMLElement | null): FormData;
        };
        Headers: { prototype: Headers; new (init?: HeadersInit): Headers };
        Request: any;
        Response: any;
    }
    Index

    Properties

    Blob: {
        prototype: Blob;
        new (blobParts?: BlobPart[], options?: BlobPropertyBag): Blob;
    }
    default: any
    File: {
        prototype: File;
        new (
            fileBits: BlobPart[],
            fileName: string,
            options?: FilePropertyBag,
        ): File;
    }
    FormData: {
        prototype: FormData;
        new (form?: HTMLFormElement, submitter?: HTMLElement | null): FormData;
    }
    Headers: { prototype: Headers; new (init?: HeadersInit): Headers }
    Request: any
    Response: any