6 lines
227 B
TypeScript
Raw Normal View History

2024-04-28 15:34:17 +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';