/** * Page URL Resolver * * Builds user-facing project page URLs for plugins (used by the UI to show * "open in browser" links for plugins requiring manual download). The * source-type → URL pattern mapping lives next to the source modules rather * than leaking into workflow code. * * Phase 3 audit, finding ARCH [5] (April 30, 2026) — moved from * `src/workflows/update-check.ts` so the workflow no longer special-cases * source types for presentation concerns. * * @since v2.11.64 */ import type { Plugin } from '../../types/plugin.js'; /** * Get the user-facing project page URL for a plugin, if one can be derived * from its source type and identifier. Returns undefined for sources that * don't expose a stable page URL (or for which we don't know the format). */ export declare function getPluginPageUrl(plugin: Plugin): string | undefined; //# sourceMappingURL=page-url.d.ts.map