//#region packages/node/getPort.d.ts /** * 获取本地没有被占用的端口 * @param port=5173 端口 * @param host='0.0.0.0' ip地址 * @param isLocal=true 是否监听本地 * @returns */ declare function getPort(host: string | undefined, port?: number, isLocal?: boolean): Promise<{ port: number; host?: string; }>; //#endregion export { getPort as t };