1 | import create from './create.js';
|
2 | import Options from './core/options.js';
|
3 | const defaults = {
|
4 | options: new Options(),
|
5 | handlers: [],
|
6 | mutableDefaults: false,
|
7 | };
|
8 | const got = create(defaults);
|
9 | export default got;
|
10 |
|
11 | export { got };
|
12 | export { default as Options } from './core/options.js';
|
13 | export * from './core/options.js';
|
14 | export * from './core/response.js';
|
15 | export * from './core/index.js';
|
16 | export * from './core/errors.js';
|
17 | export { default as calculateRetryDelay } from './core/calculate-retry-delay.js';
|
18 | export * from './as-promise/types.js';
|
19 | export * from './types.js';
|
20 | export { default as create } from './create.js';
|
21 | export { default as parseLinkHeader } from './core/parse-link-header.js';
|