Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

promisify.d.ts 299B

1234
  1. import { ClientRequest, RequestOptions, AgentCallbackCallback, AgentCallbackPromise } from './index';
  2. declare type LegacyCallback = (req: ClientRequest, opts: RequestOptions, fn: AgentCallbackCallback) => void;
  3. export default function promisify(fn: LegacyCallback): AgentCallbackPromise;
  4. export {};