UNPKG

kaven-utils

Version:

Utils for Node.js.

35 lines (34 loc) 1.01 kB
/******************************************************************** * @author: Kaven * @email: kaven@wuwenkai.com * @website: http://blog.kaven.xyz * @file: [Kaven-Utils] /src/base/Constants.ts * @create: 2023-11-21 09:42:46.305 * @modify: 2025-10-14 22:58:04.879 * @version: 6.1.0 * @times: 11 * @lines: 53 * @copyright: Copyright © 2023-2025 Kaven. All Rights Reserved. * @description: [description] * @license: [license] ********************************************************************/ /** * @since 5.0.3 * @version 2023-11-21 */ export declare const DefaultGetExternalIpByUPnPOptions: { timeoutMilliseconds: number; multicastIp: string; port: number; /** * Let the system choose a free port by default */ localPort: number; ignoreCache: boolean; checkIp: (ip?: string) => boolean; }; /** * @since 6.1.0 * @version 2025-10-14 */ export declare const DefaultConfigFileNames: string[];