iceberg-js
    Preparing search index...

    Type Alias AuthConfig

    AuthConfig:
        | { type: "none" }
        | { token: string; type: "bearer" }
        | { name: string; type: "header"; value: string }
        | {
            getHeaders: () => | Record<string, string>
            | Promise<Record<string, string>>;
            type: "custom";
        }