You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

create.d.ts 227B

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';