/** * Deterministically turn a filesystem path into a port number in the valid range (1024 .. 65353) * Maps to a multiple of 100, because they're more memorable (but we skip 1000-multiples under 10k, because too many tools use them). * * @param {string} path * @returns {number} */ export function getPortNumberForPath(path: string): number; /** * djb2 hash function - simple, fast, and good distribution for strings. * Thx http://www.cse.yorku.ca/~oz/hash.html * * @param {string} str * @returns {number} Unsigned 32-bit integer */ export function djb2Hash(str: string): number; export const RANGE: number;