UNPKG

@multiversx/sdk-nestjs-http

Version:
17 lines (16 loc) 499 B
import { NativeAuthSigner } from "../../auth/native.auth.signer"; export interface ApiSettingsBasicCredentials { username: string; password: string; } export declare class ApiSettings { timeout?: number; skipRedirects?: boolean; responseType?: 'arraybuffer' | 'json'; headers?: Record<string, string>; params?: any; httpsAgent?: any; auth?: ApiSettingsBasicCredentials; nativeAuthSigner?: NativeAuthSigner; validateStatus?: (status: number) => boolean; }