@nondef/ts-oai-pmh
    Preparing search index...

    Interface IOAIHarvesterOptionsInterface

    interface IOAIHarvesterOptionsInterface {
        baseUrl: string | URL;
        fetch: (
            input: string | URL | Request,
            init?: RequestInit,
        ) => Promise<Response>;
        requestMethod: "GET" | "POST";
        retry: IOAIRetryOptionsInterface;
        signal?: AbortSignal;
        userAgent: string;
    }
    Index

    Properties

    baseUrl: string | URL
    fetch: (input: string | URL | Request, init?: RequestInit) => Promise<Response>
    requestMethod: "GET" | "POST"
    signal?: AbortSignal
    userAgent: string