mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
10 lines
348 B
TypeScript
10 lines
348 B
TypeScript
// Type definitions for freeport 1.0
|
|
// Project: https://github.com/daaku/nodejs-freeport
|
|
// Definitions by: Arne Schubert <https://github.com/atd-schubert>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare function freeport(cb: (err: Error, port: number) => void): void;
|
|
declare namespace freeport {}
|
|
|
|
export = freeport;
|