ZenFS
    Preparing search index...

    Interface Fetch

    interface Fetch {
        name: "Fetch";
        options: {
            baseUrl: { required: true; type: "string" };
            index: { required: false; type: readonly ["string", "object"] };
            remoteWrite: { required: false; type: "boolean" };
            requestInit: { required: false; type: "object" };
        };
        create(options: FetchOptions): Promise<FetchFS>;
        isAvailable(): boolean;
    }

    Hierarchy

    • _Fetch
      • Fetch
    Index

    Properties

    Methods

    Properties

    name: "Fetch" = 'Fetch'
    options: {
        baseUrl: { required: true; type: "string" };
        index: { required: false; type: readonly ["string", "object"] };
        remoteWrite: { required: false; type: "boolean" };
        requestInit: { required: false; type: "object" };
    } = ...

    Methods