create.d.ts 227 B

12345
  1. import { Got, HandlerFunction, InstanceDefaults } from './types';
  2. export declare const defaultHandler: HandlerFunction;
  3. declare const create: (defaults: InstanceDefaults) => Got;
  4. export default create;
  5. export * from './types';