UNPKG

novel-opds-now

Version:

按需生成 epub,此模組不使用排程任務來生成 epub

14 lines (13 loc) 498 B
/// <reference types="node" /> import { ListenOptions } from 'net'; import { IIPFSControllerDaemon } from '../types'; export declare function getPort2(options: { port: number; }): Promise<number>; export declare function findFreeAddresses(options: IIPFSControllerDaemon["opts"]): Promise<{ Swarm: string[]; API: string; Gateway: string; }>; export declare function isAvailablePort(options: ListenOptions | number): Promise<number>; export declare function getUsedPorts(): number[];