mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-03 23:36:21 +02:00
5 lines
299 B
TypeScript
5 lines
299 B
TypeScript
import { ClientRequest, RequestOptions, AgentCallbackCallback, AgentCallbackPromise } from './index';
|
|
declare type LegacyCallback = (req: ClientRequest, opts: RequestOptions, fn: AgentCallbackCallback) => void;
|
|
export default function promisify(fn: LegacyCallback): AgentCallbackPromise;
|
|
export {};
|