6 lines
227 B
TypeScript
Raw Normal View History

2023-03-20 18:43:57 +08:00
import { Got, HandlerFunction, InstanceDefaults } from './types';
export declare const defaultHandler: HandlerFunction;
declare const create: (defaults: InstanceDefaults) => Got;
export default create;
export * from './types';