/** * Generate a new scope name which does not * conflict / overlap with a previous scope name. * Really these just need to be unique within the coordination object. * So in theory they could be String(Math.random()) or uuidv4() or something. * However it may be good to make them more human-readable and memorable * since eventually we will want to expose a UI to update the coordination. * @param {string[]} prevScopes Previous scope names. * @returns {string} The new scope name. */ export function getNextScope(prevScopes: string[]): string; //# sourceMappingURL=utils.d.ts.map