source: imaps-frontend/node_modules/axios/index.d.cts@ 0c6b92a

main
Last change on this file since 0c6b92a was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago

Pred finalna verzija

  • Property mode set to 100644
File size: 18.4 KB
RevLine 
[d565449]1interface RawAxiosHeaders {
2 [key: string]: axios.AxiosHeaderValue;
3}
4
5type MethodsHeaders = Partial<{
[0c6b92a]6 [Key in axios.Method as Lowercase<Key>]: InternalAxiosHeaders;
7} & {common: InternalAxiosHeaders}>;
[d565449]8
[0c6b92a]9type AxiosHeaderMatcher = (this: InternalAxiosHeaders, value: string, name: string, headers: RawAxiosHeaders) => boolean;
[d565449]10
[0c6b92a]11type AxiosHeaderParser = (this: InternalAxiosHeaders, value: axios.AxiosHeaderValue, header: string) => any;
[d565449]12
13type CommonRequestHeadersList = 'Accept' | 'Content-Length' | 'User-Agent'| 'Content-Encoding' | 'Authorization';
14
15type ContentType = axios.AxiosHeaderValue | 'text/html' | 'text/plain' | 'multipart/form-data' | 'application/json' | 'application/x-www-form-urlencoded' | 'application/octet-stream';
16
17type CommonResponseHeadersList = 'Server' | 'Content-Type' | 'Content-Length' | 'Cache-Control'| 'Content-Encoding';
18
[0c6b92a]19declare class InternalAxiosHeaders {
[d565449]20 constructor(
[0c6b92a]21 headers?: RawAxiosHeaders | InternalAxiosHeaders | string
[d565449]22 );
23
24 [key: string]: any;
25
[0c6b92a]26 set(headerName?: string, value?: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): InternalAxiosHeaders;
27 set(headers?: RawAxiosHeaders | InternalAxiosHeaders | string, rewrite?: boolean): InternalAxiosHeaders;
[d565449]28
29 get(headerName: string, parser: RegExp): RegExpExecArray | null;
30 get(headerName: string, matcher?: true | AxiosHeaderParser): axios.AxiosHeaderValue;
31
32 has(header: string, matcher?: AxiosHeaderMatcher): boolean;
33
34 delete(header: string | string[], matcher?: AxiosHeaderMatcher): boolean;
35
36 clear(matcher?: AxiosHeaderMatcher): boolean;
37
[0c6b92a]38 normalize(format: boolean): InternalAxiosHeaders;
[d565449]39
[0c6b92a]40 concat(...targets: Array<InternalAxiosHeaders | RawAxiosHeaders | string | undefined | null>): InternalAxiosHeaders;
[d565449]41
42 toJSON(asStrings?: boolean): RawAxiosHeaders;
43
[0c6b92a]44 static from(thing?: InternalAxiosHeaders | RawAxiosHeaders | string): InternalAxiosHeaders;
[d565449]45
[0c6b92a]46 static accessor(header: string | string[]): InternalAxiosHeaders;
[d565449]47
[0c6b92a]48 static concat(...targets: Array<InternalAxiosHeaders | RawAxiosHeaders | string | undefined | null>): InternalAxiosHeaders;
[d565449]49
[0c6b92a]50 setContentType(value: ContentType, rewrite?: boolean | AxiosHeaderMatcher): InternalAxiosHeaders;
[d565449]51 getContentType(parser?: RegExp): RegExpExecArray | null;
52 getContentType(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
53 hasContentType(matcher?: AxiosHeaderMatcher): boolean;
54
[0c6b92a]55 setContentLength(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): InternalAxiosHeaders;
[d565449]56 getContentLength(parser?: RegExp): RegExpExecArray | null;
57 getContentLength(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
58 hasContentLength(matcher?: AxiosHeaderMatcher): boolean;
59
[0c6b92a]60 setAccept(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): InternalAxiosHeaders;
[d565449]61 getAccept(parser?: RegExp): RegExpExecArray | null;
62 getAccept(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
63 hasAccept(matcher?: AxiosHeaderMatcher): boolean;
64
[0c6b92a]65 setUserAgent(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): InternalAxiosHeaders;
[d565449]66 getUserAgent(parser?: RegExp): RegExpExecArray | null;
67 getUserAgent(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
68 hasUserAgent(matcher?: AxiosHeaderMatcher): boolean;
69
[0c6b92a]70 setContentEncoding(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): InternalAxiosHeaders;
[d565449]71 getContentEncoding(parser?: RegExp): RegExpExecArray | null;
72 getContentEncoding(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
73 hasContentEncoding(matcher?: AxiosHeaderMatcher): boolean;
74
[0c6b92a]75 setAuthorization(value: axios.AxiosHeaderValue, rewrite?: boolean | AxiosHeaderMatcher): InternalAxiosHeaders;
[d565449]76 getAuthorization(parser?: RegExp): RegExpExecArray | null;
77 getAuthorization(matcher?: AxiosHeaderMatcher): axios.AxiosHeaderValue;
78 hasAuthorization(matcher?: AxiosHeaderMatcher): boolean;
79
80 [Symbol.iterator](): IterableIterator<[string, axios.AxiosHeaderValue]>;
81}
82
83declare class AxiosError<T = unknown, D = any> extends Error {
84 constructor(
85 message?: string,
86 code?: string,
87 config?: axios.InternalAxiosRequestConfig<D>,
88 request?: any,
89 response?: axios.AxiosResponse<T, D>
90 );
91
92 config?: axios.InternalAxiosRequestConfig<D>;
93 code?: string;
94 request?: any;
95 response?: axios.AxiosResponse<T, D>;
96 isAxiosError: boolean;
97 status?: number;
98 toJSON: () => object;
99 cause?: Error;
100 static readonly ERR_FR_TOO_MANY_REDIRECTS = "ERR_FR_TOO_MANY_REDIRECTS";
101 static readonly ERR_BAD_OPTION_VALUE = "ERR_BAD_OPTION_VALUE";
102 static readonly ERR_BAD_OPTION = "ERR_BAD_OPTION";
103 static readonly ERR_NETWORK = "ERR_NETWORK";
104 static readonly ERR_DEPRECATED = "ERR_DEPRECATED";
105 static readonly ERR_BAD_RESPONSE = "ERR_BAD_RESPONSE";
106 static readonly ERR_BAD_REQUEST = "ERR_BAD_REQUEST";
107 static readonly ERR_NOT_SUPPORT = "ERR_NOT_SUPPORT";
108 static readonly ERR_INVALID_URL = "ERR_INVALID_URL";
109 static readonly ERR_CANCELED = "ERR_CANCELED";
110 static readonly ECONNABORTED = "ECONNABORTED";
111 static readonly ETIMEDOUT = "ETIMEDOUT";
112}
113
[0c6b92a]114declare class InternalCanceledError<T> extends AxiosError<T> {
[d565449]115}
116
[0c6b92a]117declare class InternalAxios {
[d565449]118 constructor(config?: axios.AxiosRequestConfig);
119 defaults: axios.AxiosDefaults;
120 interceptors: {
121 request: axios.AxiosInterceptorManager<axios.InternalAxiosRequestConfig>;
122 response: axios.AxiosInterceptorManager<axios.AxiosResponse>;
123 };
124 getUri(config?: axios.AxiosRequestConfig): string;
125 request<T = any, R = axios.AxiosResponse<T>, D = any>(config: axios.AxiosRequestConfig<D>): Promise<R>;
126 get<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, config?: axios.AxiosRequestConfig<D>): Promise<R>;
127 delete<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, config?: axios.AxiosRequestConfig<D>): Promise<R>;
128 head<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, config?: axios.AxiosRequestConfig<D>): Promise<R>;
129 options<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, config?: axios.AxiosRequestConfig<D>): Promise<R>;
130 post<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, data?: D, config?: axios.AxiosRequestConfig<D>): Promise<R>;
131 put<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, data?: D, config?: axios.AxiosRequestConfig<D>): Promise<R>;
132 patch<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, data?: D, config?: axios.AxiosRequestConfig<D>): Promise<R>;
133 postForm<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, data?: D, config?: axios.AxiosRequestConfig<D>): Promise<R>;
134 putForm<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, data?: D, config?: axios.AxiosRequestConfig<D>): Promise<R>;
135 patchForm<T = any, R = axios.AxiosResponse<T>, D = any>(url: string, data?: D, config?: axios.AxiosRequestConfig<D>): Promise<R>;
136}
137
[0c6b92a]138declare enum InternalHttpStatusCode {
[d565449]139 Continue = 100,
140 SwitchingProtocols = 101,
141 Processing = 102,
142 EarlyHints = 103,
143 Ok = 200,
144 Created = 201,
145 Accepted = 202,
146 NonAuthoritativeInformation = 203,
147 NoContent = 204,
148 ResetContent = 205,
149 PartialContent = 206,
150 MultiStatus = 207,
151 AlreadyReported = 208,
152 ImUsed = 226,
153 MultipleChoices = 300,
154 MovedPermanently = 301,
155 Found = 302,
156 SeeOther = 303,
157 NotModified = 304,
158 UseProxy = 305,
159 Unused = 306,
160 TemporaryRedirect = 307,
161 PermanentRedirect = 308,
162 BadRequest = 400,
163 Unauthorized = 401,
164 PaymentRequired = 402,
165 Forbidden = 403,
166 NotFound = 404,
167 MethodNotAllowed = 405,
168 NotAcceptable = 406,
169 ProxyAuthenticationRequired = 407,
170 RequestTimeout = 408,
171 Conflict = 409,
172 Gone = 410,
173 LengthRequired = 411,
174 PreconditionFailed = 412,
175 PayloadTooLarge = 413,
176 UriTooLong = 414,
177 UnsupportedMediaType = 415,
178 RangeNotSatisfiable = 416,
179 ExpectationFailed = 417,
180 ImATeapot = 418,
181 MisdirectedRequest = 421,
182 UnprocessableEntity = 422,
183 Locked = 423,
184 FailedDependency = 424,
185 TooEarly = 425,
186 UpgradeRequired = 426,
187 PreconditionRequired = 428,
188 TooManyRequests = 429,
189 RequestHeaderFieldsTooLarge = 431,
190 UnavailableForLegalReasons = 451,
191 InternalServerError = 500,
192 NotImplemented = 501,
193 BadGateway = 502,
194 ServiceUnavailable = 503,
195 GatewayTimeout = 504,
196 HttpVersionNotSupported = 505,
197 VariantAlsoNegotiates = 506,
198 InsufficientStorage = 507,
199 LoopDetected = 508,
200 NotExtended = 510,
201 NetworkAuthenticationRequired = 511,
202}
203
204type InternalAxiosError<T = unknown, D = any> = AxiosError<T, D>;
205
206declare namespace axios {
207 type AxiosError<T = unknown, D = any> = InternalAxiosError<T, D>;
[0c6b92a]208 type Axios = InternalAxios;
209 type AxiosHeaders = InternalAxiosHeaders;
210 type CanceledError<T> = InternalCanceledError<T>;
211 type HttpStatusCode = InternalHttpStatusCode;
[d565449]212
213 type RawAxiosRequestHeaders = Partial<RawAxiosHeaders & {
214 [Key in CommonRequestHeadersList]: AxiosHeaderValue;
215 } & {
216 'Content-Type': ContentType
217 }>;
218
219 type AxiosRequestHeaders = RawAxiosRequestHeaders & AxiosHeaders;
220
221 type AxiosHeaderValue = AxiosHeaders | string | string[] | number | boolean | null;
222
223 type RawCommonResponseHeaders = {
224 [Key in CommonResponseHeadersList]: AxiosHeaderValue;
225 } & {
226 "set-cookie": string[];
227 };
228
229 type RawAxiosResponseHeaders = Partial<RawAxiosHeaders & RawCommonResponseHeaders>;
230
231 type AxiosResponseHeaders = RawAxiosResponseHeaders & AxiosHeaders;
232
233 interface AxiosRequestTransformer {
234 (this: InternalAxiosRequestConfig, data: any, headers: AxiosRequestHeaders): any;
235 }
236
237 interface AxiosResponseTransformer {
238 (this: InternalAxiosRequestConfig, data: any, headers: AxiosResponseHeaders, status?: number): any;
239 }
240
241 interface AxiosAdapter {
242 (config: InternalAxiosRequestConfig): AxiosPromise;
243 }
244
245 interface AxiosBasicCredentials {
246 username: string;
247 password: string;
248 }
249
250 interface AxiosProxyConfig {
251 host: string;
252 port: number;
253 auth?: AxiosBasicCredentials;
254 protocol?: string;
255 }
256
257 type Method =
258 | 'get' | 'GET'
259 | 'delete' | 'DELETE'
260 | 'head' | 'HEAD'
261 | 'options' | 'OPTIONS'
262 | 'post' | 'POST'
263 | 'put' | 'PUT'
264 | 'patch' | 'PATCH'
265 | 'purge' | 'PURGE'
266 | 'link' | 'LINK'
267 | 'unlink' | 'UNLINK';
268
269 type ResponseType =
270 | 'arraybuffer'
271 | 'blob'
272 | 'document'
273 | 'json'
274 | 'text'
275 | 'stream'
276 | 'formdata';
277
278 type responseEncoding =
279 | 'ascii' | 'ASCII'
280 | 'ansi' | 'ANSI'
281 | 'binary' | 'BINARY'
282 | 'base64' | 'BASE64'
283 | 'base64url' | 'BASE64URL'
284 | 'hex' | 'HEX'
285 | 'latin1' | 'LATIN1'
286 | 'ucs-2' | 'UCS-2'
287 | 'ucs2' | 'UCS2'
288 | 'utf-8' | 'UTF-8'
289 | 'utf8' | 'UTF8'
290 | 'utf16le' | 'UTF16LE';
291
292 interface TransitionalOptions {
293 silentJSONParsing?: boolean;
294 forcedJSONParsing?: boolean;
295 clarifyTimeoutError?: boolean;
296 }
297
298 interface GenericAbortSignal {
299 readonly aborted: boolean;
300 onabort?: ((...args: any) => any) | null;
301 addEventListener?: (...args: any) => any;
302 removeEventListener?: (...args: any) => any;
303 }
304
305 interface FormDataVisitorHelpers {
306 defaultVisitor: SerializerVisitor;
307 convertValue: (value: any) => any;
308 isVisitable: (value: any) => boolean;
309 }
310
311 interface SerializerVisitor {
312 (
313 this: GenericFormData,
314 value: any,
315 key: string | number,
316 path: null | Array<string | number>,
317 helpers: FormDataVisitorHelpers
318 ): boolean;
319 }
320
321 interface SerializerOptions {
322 visitor?: SerializerVisitor;
323 dots?: boolean;
324 metaTokens?: boolean;
325 indexes?: boolean | null;
326 }
327
328 // tslint:disable-next-line
329 interface FormSerializerOptions extends SerializerOptions {
330 }
331
332 interface ParamEncoder {
333 (value: any, defaultEncoder: (value: any) => any): any;
334 }
335
336 interface CustomParamsSerializer {
337 (params: Record<string, any>, options?: ParamsSerializerOptions): string;
338 }
339
340 interface ParamsSerializerOptions extends SerializerOptions {
341 encode?: ParamEncoder;
342 serialize?: CustomParamsSerializer;
343 }
344
345 type MaxUploadRate = number;
346
347 type MaxDownloadRate = number;
348
349 type BrowserProgressEvent = any;
350
351 interface AxiosProgressEvent {
352 loaded: number;
353 total?: number;
354 progress?: number;
355 bytes: number;
356 rate?: number;
357 estimated?: number;
358 upload?: boolean;
359 download?: boolean;
360 event?: BrowserProgressEvent;
361 lengthComputable: boolean;
362 }
363
364 type Milliseconds = number;
365
366 type AxiosAdapterName = 'fetch' | 'xhr' | 'http' | string;
367
368 type AxiosAdapterConfig = AxiosAdapter | AxiosAdapterName;
369
370 type AddressFamily = 4 | 6 | undefined;
371
372 interface LookupAddressEntry {
373 address: string;
374 family?: AddressFamily;
375 }
376
377 type LookupAddress = string | LookupAddressEntry;
378
379 interface AxiosRequestConfig<D = any> {
380 url?: string;
381 method?: Method | string;
382 baseURL?: string;
383 transformRequest?: AxiosRequestTransformer | AxiosRequestTransformer[];
384 transformResponse?: AxiosResponseTransformer | AxiosResponseTransformer[];
385 headers?: (RawAxiosRequestHeaders & MethodsHeaders) | AxiosHeaders;
386 params?: any;
387 paramsSerializer?: ParamsSerializerOptions | CustomParamsSerializer;
388 data?: D;
389 timeout?: Milliseconds;
390 timeoutErrorMessage?: string;
391 withCredentials?: boolean;
392 adapter?: AxiosAdapterConfig | AxiosAdapterConfig[];
393 auth?: AxiosBasicCredentials;
394 responseType?: ResponseType;
395 responseEncoding?: responseEncoding | string;
396 xsrfCookieName?: string;
397 xsrfHeaderName?: string;
398 onUploadProgress?: (progressEvent: AxiosProgressEvent) => void;
399 onDownloadProgress?: (progressEvent: AxiosProgressEvent) => void;
400 maxContentLength?: number;
401 validateStatus?: ((status: number) => boolean) | null;
402 maxBodyLength?: number;
403 maxRedirects?: number;
404 maxRate?: number | [MaxUploadRate, MaxDownloadRate];
[0c6b92a]405 beforeRedirect?: (options: Record<string, any>, responseDetails: {headers: Record<string, string>, statusCode: InternalHttpStatusCode}) => void;
[d565449]406 socketPath?: string | null;
407 transport?: any;
408 httpAgent?: any;
409 httpsAgent?: any;
410 proxy?: AxiosProxyConfig | false;
411 cancelToken?: CancelToken;
412 decompress?: boolean;
413 transitional?: TransitionalOptions;
414 signal?: GenericAbortSignal;
415 insecureHTTPParser?: boolean;
416 env?: {
417 FormData?: new (...args: any[]) => object;
418 };
419 formSerializer?: FormSerializerOptions;
420 family?: AddressFamily;
421 lookup?: ((hostname: string, options: object, cb: (err: Error | null, address: LookupAddress | LookupAddress[], family?: AddressFamily) => void) => void) |
422 ((hostname: string, options: object) => Promise<[address: LookupAddressEntry | LookupAddressEntry[], family?: AddressFamily] | LookupAddress>);
423 withXSRFToken?: boolean | ((config: InternalAxiosRequestConfig) => boolean | undefined);
424 fetchOptions?: Record<string, any>;
425 }
426
427 // Alias
428 type RawAxiosRequestConfig<D = any> = AxiosRequestConfig<D>;
429
430 interface InternalAxiosRequestConfig<D = any> extends AxiosRequestConfig {
431 headers: AxiosRequestHeaders;
432 }
433
434 interface HeadersDefaults {
435 common: RawAxiosRequestHeaders;
436 delete: RawAxiosRequestHeaders;
437 get: RawAxiosRequestHeaders;
438 head: RawAxiosRequestHeaders;
439 post: RawAxiosRequestHeaders;
440 put: RawAxiosRequestHeaders;
441 patch: RawAxiosRequestHeaders;
442 options?: RawAxiosRequestHeaders;
443 purge?: RawAxiosRequestHeaders;
444 link?: RawAxiosRequestHeaders;
445 unlink?: RawAxiosRequestHeaders;
446 }
447
448 interface AxiosDefaults<D = any> extends Omit<AxiosRequestConfig<D>, 'headers'> {
449 headers: HeadersDefaults;
450 }
451
452 interface CreateAxiosDefaults<D = any> extends Omit<AxiosRequestConfig<D>, 'headers'> {
453 headers?: RawAxiosRequestHeaders | AxiosHeaders | Partial<HeadersDefaults>;
454 }
455
456 interface AxiosResponse<T = any, D = any> {
457 data: T;
458 status: number;
459 statusText: string;
460 headers: RawAxiosResponseHeaders | AxiosResponseHeaders;
461 config: InternalAxiosRequestConfig<D>;
462 request?: any;
463 }
464
465 type AxiosPromise<T = any> = Promise<AxiosResponse<T>>;
466
467 interface CancelStatic {
468 new (message?: string): Cancel;
469 }
470
471 interface Cancel {
472 message: string | undefined;
473 }
474
475 interface Canceler {
476 (message?: string, config?: AxiosRequestConfig, request?: any): void;
477 }
478
479 interface CancelTokenStatic {
480 new (executor: (cancel: Canceler) => void): CancelToken;
481 source(): CancelTokenSource;
482 }
483
484 interface CancelToken {
485 promise: Promise<Cancel>;
486 reason?: Cancel;
487 throwIfRequested(): void;
488 }
489
490 interface CancelTokenSource {
491 token: CancelToken;
492 cancel: Canceler;
493 }
494
495 interface AxiosInterceptorOptions {
496 synchronous?: boolean;
497 runWhen?: (config: InternalAxiosRequestConfig) => boolean;
498 }
499
[0c6b92a]500 type AxiosRequestInterceptorUse<T> = (onFulfilled?: ((value: T) => T | Promise<T>) | null, onRejected?: ((error: any) => any) | null, options?: AxiosInterceptorOptions) => number;
501
502 type AxiosResponseInterceptorUse<T> = (onFulfilled?: ((value: T) => T | Promise<T>) | null, onRejected?: ((error: any) => any) | null) => number;
503
[d565449]504 interface AxiosInterceptorManager<V> {
[0c6b92a]505 use: V extends AxiosResponse ? AxiosResponseInterceptorUse<V> : AxiosRequestInterceptorUse<V>;
[d565449]506 eject(id: number): void;
507 clear(): void;
508 }
509
[0c6b92a]510 interface AxiosInstance extends InternalAxios {
[d565449]511 <T = any, R = AxiosResponse<T>, D = any>(config: AxiosRequestConfig<D>): Promise<R>;
512 <T = any, R = AxiosResponse<T>, D = any>(url: string, config?: AxiosRequestConfig<D>): Promise<R>;
513
514 defaults: Omit<AxiosDefaults, 'headers'> & {
515 headers: HeadersDefaults & {
516 [key: string]: AxiosHeaderValue
517 }
518 };
519 }
520
521 interface GenericFormData {
522 append(name: string, value: any, options?: any): any;
523 }
524
525 interface GenericHTMLFormElement {
526 name: string;
527 method: string;
528 submit(): void;
529 }
530
531 interface AxiosStatic extends AxiosInstance {
[0c6b92a]532 default: AxiosStatic;
[d565449]533 create(config?: CreateAxiosDefaults): AxiosInstance;
534 Cancel: CancelStatic;
535 CancelToken: CancelTokenStatic;
[0c6b92a]536 Axios: typeof InternalAxios;
[d565449]537 AxiosError: typeof AxiosError;
[0c6b92a]538 CanceledError: typeof InternalCanceledError;
539 HttpStatusCode: typeof InternalHttpStatusCode;
[d565449]540 readonly VERSION: string;
541 isCancel(value: any): value is Cancel;
542 all<T>(values: Array<T | Promise<T>>): Promise<T[]>;
543 spread<T, R>(callback: (...args: T[]) => R): (array: T[]) => R;
544 isAxiosError<T = any, D = any>(payload: any): payload is AxiosError<T, D>;
545 toFormData(sourceObj: object, targetFormData?: GenericFormData, options?: FormSerializerOptions): GenericFormData;
546 formToJSON(form: GenericFormData|GenericHTMLFormElement): object;
547 getAdapter(adapters: AxiosAdapterConfig | AxiosAdapterConfig[] | undefined): AxiosAdapter;
[0c6b92a]548 AxiosHeaders: typeof InternalAxiosHeaders;
[d565449]549 }
550}
551
552declare const axios: axios.AxiosStatic;
553
554export = axios;
Note: See TracBrowser for help on using the repository browser.