mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-25 14:09:27 +08:00
08d466b6ab
Co-authored-by: Oliver King <oking3@uncc.edu>
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 {};
|