redux-devtools/packages/redux-devtools-cli/src/getport.ts
Nathan Bierema c91471a41d
chore(cli): convert to TypeScript (#656)
* chore(cli): convert to TypeScript

* Fix knex usage

* Fix eslintrc

* Ignore dist
2020-10-26 01:57:34 -04:00

7 lines
153 B
TypeScript

declare module 'getport' {
export default function getport(
start: number,
callback: (e: Error | undefined, port: number) => void
): void;
}