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

    Interface IOAIHarvesterConstructorOptionsInterface

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

    Properties

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